Merge pull request #596 from torrentpier/fixed-typo-filecache

Fixed typo in src/Cache/File.php
This commit is contained in:
Roman Kelesidis 2023-03-15 23:39:37 +07:00 committed by GitHub
commit 754b7c5291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ class File extends Common
{
$filename = $this->dir . clean_filename($this->prefix . $name) . '.php';
$this->cur_query = "cache->set('$name')";
$this->cur_query = "cache->get('$name')";
$this->debug('start');
if (file_exists($filename)) {