diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-16 04:56:41 -0400 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-16 04:56:41 -0400 |
| commit | ccdd176b72250be2e8f72bd13147679a5f2a263b (patch) | |
| tree | df803fcb2b0eb75837c593db8b2b2c353a7a507b /phpBB/includes/acp | |
| parent | 7dfb8d7c2022669087b3ed0ba7871b8346e5a6dd (diff) | |
| download | forums-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.php | 2 |
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; } |
