[ticket/10737] Enforce allow_live_searches setting in memberlist.php.

PHPBB3-10737
This commit is contained in:
Cesar G 2014-04-12 04:26:51 -07:00
parent 607698c884
commit f2e74354a3
2 changed files with 8 additions and 0 deletions

View file

@ -348,6 +348,7 @@ $lang = array_merge($lang, array(
'LDAP_NO_SERVER_CONNECTION' => 'Could not connect to LDAP server.', 'LDAP_NO_SERVER_CONNECTION' => 'Could not connect to LDAP server.',
'LDAP_SEARCH_FAILED' => 'An error occurred while searching the LDAP directory.', 'LDAP_SEARCH_FAILED' => 'An error occurred while searching the LDAP directory.',
'LEGEND' => 'Legend', 'LEGEND' => 'Legend',
'LIVE_SEARCHES_NOT_ALLOWED' => 'Live searches are not allowed.',
'LOADING' => 'Loading', 'LOADING' => 'Loading',
'LOCATION' => 'Location', 'LOCATION' => 'Location',
'LOCK_POST' => 'Lock post', 'LOCK_POST' => 'Lock post',

View file

@ -50,6 +50,13 @@ switch ($mode)
case 'email': case 'email':
break; break;
case 'livesearch':
if (!$config['allow_live_searches'])
{
trigger_error('LIVE_SEARCHES_NOT_ALLOWED');
}
// No break
default: default:
// Can this user view profiles/memberlist? // Can this user view profiles/memberlist?
if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel')) if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))