diff options
Diffstat (limited to 'phpBB/includes/acm/cache_file.php')
| -rw-r--r-- | phpBB/includes/acm/cache_file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acm/cache_file.php b/phpBB/includes/acm/cache_file.php index e4fc4e85a6..14cc160d84 100644 --- a/phpBB/includes/acm/cache_file.php +++ b/phpBB/includes/acm/cache_file.php @@ -67,7 +67,7 @@ class acm } } - function save($varname, $var) + function put($varname, $var) { $this->vars[$varname] = $var; $this->vars_ts[$varname] = time(); @@ -84,7 +84,7 @@ class acm } } - function load($varname, $expire_time = 0) + function get($varname, $expire_time = 0) { return ($this->exists($varname, $expire_time)) ? $this->vars[$varname] : null; } |
