1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-14 20:54:13 +02:00

[feature/class-prefix] Rename auth => phpbb_auth

PHPBB3-10609
This commit is contained in:
Igor Wiedler
2012-03-31 02:54:39 +02:00
parent 6deb7b3671
commit 9236dd4c47
11 changed files with 12 additions and 15 deletions

View File

@@ -1105,7 +1105,7 @@ class acp_permissions
{
if ($user_id != $user->data['user_id'])
{
$auth2 = new auth();
$auth2 = new phpbb_auth();
$auth2->acl($userdata);
$auth_setting = $auth2->acl_get($permission);
}

View File

@@ -1554,7 +1554,7 @@ class acp_users
|| $user_row['user_allow_viewonline'] && !$sql_ary['user_allow_viewonline'])
{
// We also need to check if the user has the permission to cloak.
$user_auth = new auth();
$user_auth = new phpbb_auth();
$user_auth->acl($user_row);
$session_sql_ary = array(

View File

@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
* ACP Permission/Auth class
* @package phpBB3
*/
class auth_admin extends auth
class auth_admin extends phpbb_auth
{
/**
* Init auth settings
@@ -130,7 +130,7 @@ class auth_admin extends auth
{
if ($user->data['user_id'] != $userdata['user_id'])
{
$auth2 = new auth();
$auth2 = new phpbb_auth();
$auth2->acl($userdata);
}
else