mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
Merge pull request #535 from torrentpier/fixed-sqlite-issue
Fixed SQLite caching issue
This commit is contained in:
commit
10436f55fe
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class Sqlite extends Common
|
||||||
SELECT cache_name, cache_value
|
SELECT cache_name, cache_value
|
||||||
FROM " . $this->cfg['table_name'] . "
|
FROM " . $this->cfg['table_name'] . "
|
||||||
WHERE cache_name IN('$this->prefix_sql" . implode("','$this->prefix_sql", $name_sql) . "') AND cache_expire_time > " . TIMENOW . "
|
WHERE cache_name IN('$this->prefix_sql" . implode("','$this->prefix_sql", $name_sql) . "') AND cache_expire_time > " . TIMENOW . "
|
||||||
LIMIT " . \count($name) . "
|
LIMIT " . \count($name_sql) . "
|
||||||
");
|
");
|
||||||
|
|
||||||
$this->db->debug('start', 'unserialize()');
|
$this->db->debug('start', 'unserialize()');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue