dechex not necessary, do not waste time with it

This commit is contained in:
Arthur Schiwon 2013-01-08 19:25:19 +01:00
parent 19fa78d1ee
commit 4a8c25eef5
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ abstract class Access {
} }
$offset -= $limit; $offset -= $limit;
//we work with cache here //we work with cache here
$cachekey = 'lc' . dechex(crc32($base)) . '-' . dechex(crc32($filter)) . '-' . $limit . '-' . $offset; $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' . $limit . '-' . $offset;
$cookie = $this->connection->getFromCache($cachekey); $cookie = $this->connection->getFromCache($cachekey);
if(is_null($cookie)) { if(is_null($cookie)) {
$cookie = ''; $cookie = '';