mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-27 02:05:02 +02:00
- acm::exists() is considered private now and was renamed to acm::_exists()
git-svn-id: file:///svn/phpbb/trunk@5425 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -154,7 +154,7 @@ class acm
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->exists($var_name))
|
||||
if ($this->_exists($var_name))
|
||||
{
|
||||
if (empty($this->var_ready[$var_name]))
|
||||
{
|
||||
@@ -166,7 +166,7 @@ class acm
|
||||
}
|
||||
else
|
||||
{
|
||||
return NULL;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -213,7 +213,7 @@ class acm
|
||||
}
|
||||
}
|
||||
|
||||
function exists($var_name)
|
||||
function _exists($var_name)
|
||||
{
|
||||
if (!is_array($this->vars))
|
||||
{
|
||||
|
Reference in New Issue
Block a user