aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-01-13 04:25:57 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-01-13 04:25:57 +0000
commit9f4cb905d3053c6b564b1578dfac0795327a5ecf (patch)
tree63b2ed7ee5ce4c8d307abe42446fdfa5bc18bafa /phpBB/includes/acm
parenta16d1d9aff7e66f399dcef5a325f36e767476722 (diff)
downloadforums-9f4cb905d3053c6b564b1578dfac0795327a5ecf.tar
forums-9f4cb905d3053c6b564b1578dfac0795327a5ecf.tar.gz
forums-9f4cb905d3053c6b564b1578dfac0795327a5ecf.tar.bz2
forums-9f4cb905d3053c6b564b1578dfac0795327a5ecf.tar.xz
forums-9f4cb905d3053c6b564b1578dfac0795327a5ecf.zip
EOL should be fixed now
git-svn-id: file:///svn/phpbb/trunk@3315 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm')
-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)