aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_db.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acm/acm_db.php')
-rw-r--r--phpBB/includes/acm/acm_db.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acm/acm_db.php b/phpBB/includes/acm/acm_db.php
index a9b75a9a77..0204666aa4 100644
--- a/phpBB/includes/acm/acm_db.php
+++ b/phpBB/includes/acm/acm_db.php
@@ -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))
{