From 458b9b50ec8d835b4c5f72823d4815a9cee6d706 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Mon, 20 Jan 2003 05:12:38 +0000 Subject: Un-b0rked ACL options caching, small general fixes git-svn-id: file:///svn/phpbb/trunk@3338 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acm/cache_file.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/acm/cache_file.php') 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; } -- cgit v1.2.1