aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-03-16 04:56:41 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-03-16 04:56:41 -0400
commitccdd176b72250be2e8f72bd13147679a5f2a263b (patch)
treedf803fcb2b0eb75837c593db8b2b2c353a7a507b /phpBB/includes/acp
parent7dfb8d7c2022669087b3ed0ba7871b8346e5a6dd (diff)
downloadforums-ccdd176b72250be2e8f72bd13147679a5f2a263b.tar
forums-ccdd176b72250be2e8f72bd13147679a5f2a263b.tar.gz
forums-ccdd176b72250be2e8f72bd13147679a5f2a263b.tar.bz2
forums-ccdd176b72250be2e8f72bd13147679a5f2a263b.tar.xz
forums-ccdd176b72250be2e8f72bd13147679a5f2a263b.zip
[task/php54-ascraeus] Bring p_master#module_auth into PHP 5 era.
Split module_auth into a static and a non-static version. Call the static version statically and the non-static version non-statically. PHPBB3-10615
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r--phpBB/includes/acp/acp_users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php
index 97f4b1b5fd..cf6716c322 100644
--- a/phpBB/includes/acp/acp_users.php
+++ b/phpBB/includes/acp/acp_users.php
@@ -128,7 +128,7 @@ class acp_users
$dropdown_modes = array();
while ($row = $db->sql_fetchrow($result))
{
- if (!$this->p_master->module_auth($row['module_auth']))
+ if (!$this->p_master->module_auth_self($row['module_auth']))
{
continue;
}