aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_db.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-01-05 12:10:31 +0000
committerNils Adermann <naderman@naderman.de>2006-01-05 12:10:31 +0000
commit717424444680049eb0e2956486bcc149fe5cd851 (patch)
tree6108ed72507e5a32b1359810fe379c88b7df9f4d /phpBB/includes/acm/acm_db.php
parent636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34 (diff)
downloadforums-717424444680049eb0e2956486bcc149fe5cd851.tar
forums-717424444680049eb0e2956486bcc149fe5cd851.tar.gz
forums-717424444680049eb0e2956486bcc149fe5cd851.tar.bz2
forums-717424444680049eb0e2956486bcc149fe5cd851.tar.xz
forums-717424444680049eb0e2956486bcc149fe5cd851.zip
- 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
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))
{