diff options
Diffstat (limited to 'admin/rating.php')
-rw-r--r-- | admin/rating.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/rating.php b/admin/rating.php index da19b6b7a..99d703c72 100644 --- a/admin/rating.php +++ b/admin/rating.php @@ -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']); } |