Add missing parenthesis that I forgot.

Whoops. PHP errors, yay.
This commit is contained in:
alopexc0de 2014-08-10 18:44:40 -04:00
parent 4ad0f8ce74
commit 41a6684ccc
No known key found for this signature in database
GPG Key ID: 48E847F18074C953
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@
foreach($stats as $id){ // There should only be 5, but the page doesn't limit how many
$trTtl = $redis->ttl("links:$id");
if($trTtl == -2){ // The link has been deleted, no need to track it anymore
$redis->zRem("tracking:clicks", $id;
$redis->zRem("tracking:clicks", $id);
continue;
}