From d54692f388d317434a580cb366da569798787f70 Mon Sep 17 00:00:00 2001 From: pricetx Date: Wed, 8 Jul 2015 07:27:22 +0000 Subject: [PATCH] Only count players who have not elected to hide their rank for the player statistics at the top of the web page. --- web/pages/game.php | 1 + 1 file changed, 1 insertion(+) diff --git a/web/pages/game.php b/web/pages/game.php index eb87044..9722398 100644 --- a/web/pages/game.php +++ b/web/pages/game.php @@ -60,6 +60,7 @@ For support and installation notes visit http://www.hlxcommunity.com hlstats_Players WHERE game='$game' + AND hideranking = 0 "; $result = $db->query($query); list($total_players) = $db->fetch_row($result);