From fcb0c89962242fec72d7ed01c7049601a696e4be Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Sun, 22 Jul 2007 14:04:26 +0000 Subject: Cleaning up (#13689) Also removed the useless login box from the ACP. git-svn-id: file:///svn/phpbb/trunk@7919 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/memberlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/memberlist.php') diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index a93622065f..9d3262deeb 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -669,7 +669,7 @@ switch ($mode) { if (!$auth->acl_get('f_read', $row['forum_id'])) { - trigger_error($user->lang['SORRY_AUTH_READ']); + trigger_error('SORRY_AUTH_READ'); } if (!$auth->acl_get('f_email', $row['forum_id'])) @@ -682,7 +682,7 @@ switch ($mode) // If global announcement, we need to check if the user is able to at least read and email in one forum... if (!$auth->acl_getf_global('f_read')) { - trigger_error($user->lang['SORRY_AUTH_READ']); + trigger_error('SORRY_AUTH_READ'); } if (!$auth->acl_getf_global('f_email')) -- cgit v1.2.1