mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-22 22:33:55 -07:00
Fixed typo in src/Cache/File.php
cache->set('$name') -> cache->get('$name').
This commit is contained in:
parent
b80a9ead17
commit
2d86843f96
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class File extends Common
|
||||||
{
|
{
|
||||||
$filename = $this->dir . clean_filename($this->prefix . $name) . '.php';
|
$filename = $this->dir . clean_filename($this->prefix . $name) . '.php';
|
||||||
|
|
||||||
$this->cur_query = "cache->set('$name')";
|
$this->cur_query = "cache->get('$name')";
|
||||||
$this->debug('start');
|
$this->debug('start');
|
||||||
|
|
||||||
if (file_exists($filename)) {
|
if (file_exists($filename)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue