From 5944a524e0b4e1ddc628185d7e82c0ffa23fd881 Mon Sep 17 00:00:00 2001 From: rootcoma Date: Sun, 1 Dec 2013 19:01:32 -0800 Subject: [PATCH] url encoding usernames --- php/top.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/top.php b/php/top.php index 4fbd7fe..031350b 100644 --- a/php/top.php +++ b/php/top.php @@ -145,7 +145,7 @@ function replaceTimespanVariable($t) { foreach($result as $res) { echo ''; echo '' . $currentRank . ''; - echo '' . $res['username'] . ''; + echo '' . $res['username'] . ''; echo '' . number_format($res['points'],0) . ''; echo ''; $currentRank++;