aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/cache_file.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acm/cache_file.php')
-rw-r--r--phpBB/includes/acm/cache_file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acm/cache_file.php b/phpBB/includes/acm/cache_file.php
index c629bc4aac..e4fc4e85a6 100644
--- a/phpBB/includes/acm/cache_file.php
+++ b/phpBB/includes/acm/cache_file.php
@@ -86,7 +86,7 @@ class acm
function load($varname, $expire_time = 0)
{
- return (exists($varname, $expire_time)) ? $this->vars[$varname] : null;
+ return ($this->exists($varname, $expire_time)) ? $this->vars[$varname] : null;
}
function exists($varname, $expire_time = 0)