From 3d19e15225f2dcc0528f9dcecfa7c75db740550c Mon Sep 17 00:00:00 2001 From: CoderTim Date: Mon, 15 Sep 2014 18:47:49 -0400 Subject: [PATCH] Changed tournament leaderboard webpage to show top 30 instead of top 50 --- Webpages/leaderboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Webpages/leaderboard.php b/Webpages/leaderboard.php index 4a9e64451..4a13d4a04 100644 --- a/Webpages/leaderboard.php +++ b/Webpages/leaderboard.php @@ -73,7 +73,7 @@ for ($i = 0; $i < count($tournamentTypes); $i++) AND gameId = $i AND score IS NOT NULL ORDER BY score DESC, name ASC - LIMIT 50; + LIMIT 30; QUERY; $result = mysqli_query($con, $query);