1
0
mirror of https://github.com/gamaio/lobli.git synced 2025-08-14 02:29:05 +00:00

New token generation and fix output on shorten

This token generation should prevent the same token from being used, also considering using a type of cooldown timer.
Short links were returning as (shortid)$, which didn't work
This commit is contained in:
alopexc0de
2014-08-29 14:08:50 -04:00
parent fb5ccdce5e
commit f825c6bd29
2 changed files with 18 additions and 1 deletions

View File

@@ -51,7 +51,7 @@
$redis->zAdd("tracking:clicks", 1, $link);
return "0$seperator$short$";
return "0$seperator$short";
}
}