1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

EOL should be fixed now

git-svn-id: file:///svn/phpbb/trunk@3315 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud
2003-01-13 04:25:57 +00:00
parent a16d1d9aff
commit 9f4cb905d3
3 changed files with 5 additions and 11 deletions

View File

@@ -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)