From 0d5078163706fad9644de71c5a1482d735ff541d Mon Sep 17 00:00:00 2001 From: Ruan Date: Sun, 22 Mar 2015 06:03:29 +0200 Subject: [PATCH] Fix multiple bans/mutes/warnings not showing up --- includes/page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/page.php b/includes/page.php index ab35824..09ee395 100644 --- a/includes/page.php +++ b/includes/page.php @@ -8,7 +8,7 @@ litebans_connect(); function get_query($table) { global $table_history, $active_query, $limit_per_page; return 'SELECT * FROM ' . $table . ' INNER JOIN ' . $table_history . ' on ' . $table . '.uuid=' . $table_history . '.uuid ' . $active_query . - ' GROUP BY name ORDER BY time DESC LIMIT ' . $limit_per_page; + ' ORDER BY time DESC LIMIT ' . $limit_per_page; } function run_query($table) {