Escape all login and username characters in database

Display correctly usernames

(I hope not to have made mistakes)

git-svn-id: http://piwigo.org/svn/trunk@4304 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
Eric
2009-11-18 20:07:20 +00:00
parent 8a29965450
commit 1235bab527
19 changed files with 43 additions and 43 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ SELECT '.$conf['user_fields']['username'].' as username, '.$conf['user_fields'][
$result = pwg_query($query);
while ($row = mysql_fetch_assoc($result))
{
$users[$row['id']]=$row['username'];
$users[$row['id']]=stripslashes($row['username']);
}