Entropy/phpbb3 Auth Interface:

- fix _generate_sql()


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2212 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-06-30 19:24:02 +00:00
parent 518a746584
commit 64cb459f8b
+1 -1
View File
@@ -16529,7 +16529,7 @@ class phpBB3AuthInterface(DistributionAuthInterface):
for key in keys:
keys_data.append("'%s'='%s'" % (
self.dbconn.escape_string(key),
self.dbconn.escape_string(data[key])
self.dbconn.escape_string("'"+unicode(data[key])+"'")
)
)
sql += ', '.join(keys_data)