Remove more title stuff

This commit is contained in:
alopexc0de 2014-08-18 20:36:37 -04:00
parent 6c64f12366
commit b40c3206f8
No known key found for this signature in database
GPG Key ID: 48E847F18074C953
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
$sId = $short;
$short = $redis->lrange("links:$short", 0, 1);
$title = $short[1];
return "1$seperator$sId$seperator$title";
return "1$seperator$sId";
}else{
do {
if(checkRemoteFile($link) !== true) return "2$seperator$link";
@ -51,7 +51,7 @@
$redis->zAdd("tracking:clicks", 1, $link);
return "0$seperator$short$seperator$title";
return "0$seperator$short$";
}
}