diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:54:39 +0200 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 18:14:11 +0200 |
| commit | 9236dd4c471a6f7655bd00ae422a13013a400ac4 (patch) | |
| tree | 5f08e769821991d6e557848dec1d630ef2892653 /phpBB/includes/mcp | |
| parent | 6deb7b3671c29ab7ce1db6e11b5c6be0950d265f (diff) | |
| download | forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.gz forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.bz2 forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.xz forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.zip | |
[feature/class-prefix] Rename auth => phpbb_auth
PHPBB3-10609
Diffstat (limited to 'phpBB/includes/mcp')
| -rw-r--r-- | phpBB/includes/mcp/mcp_warn.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_warn.php b/phpBB/includes/mcp/mcp_warn.php index d8e655000f..9d838790a0 100644 --- a/phpBB/includes/mcp/mcp_warn.php +++ b/phpBB/includes/mcp/mcp_warn.php @@ -251,7 +251,7 @@ class mcp_warn // Check if can send a notification if ($config['allow_privmsg']) { - $auth2 = new auth(); + $auth2 = new phpbb_auth(); $auth2->acl($user_row); $s_can_notify = ($auth2->acl_get('u_readpm')) ? true : false; unset($auth2); @@ -374,7 +374,7 @@ class mcp_warn // Check if can send a notification if ($config['allow_privmsg']) { - $auth2 = new auth(); + $auth2 = new phpbb_auth(); $auth2->acl($user_row); $s_can_notify = ($auth2->acl_get('u_readpm')) ? true : false; unset($auth2); |
