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
No known key found for this signature in database
GPG Key ID: 48E847F18074C953
1 changed files with 1 additions and 1 deletions

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);