1
0
mirror of https://github.com/gamaio/lobli.git synced 2025-08-13 10:18:45 +00:00

remove misplaced bang that prevented stat gathering from working.

Was getting short link error when attempting to view the stats. This was fixed by checking if getstats was set instead of wasn't set
This commit is contained in:
alopexc0de
2014-08-09 19:32:45 -04:00
parent 9cd6c9ca7e
commit 169fe0fc23

View File

@@ -56,7 +56,7 @@
require('Include/PHP/functions.php');
if(!isset($_GET['getstats'])){
if(isset($_GET['getstats'])){
$stats = stats($redis, $seperator);
$stats = explode($seperator, $stats);