From 0a286e044b3d7b71edea5f79213e6c008db66986 Mon Sep 17 00:00:00 2001 From: PayBas Date: Mon, 7 Jul 2014 11:25:33 +0200 Subject: [ticket/12804] Dont use ternary form PHPBB3-12804 --- phpBB/memberlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/memberlist.php') diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 6337a5e633..80917a7f76 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1286,7 +1286,7 @@ switch ($mode) 'S_IP_SEARCH_ALLOWED' => ($auth->acl_getf_global('m_info')) ? true : false, 'S_EMAIL_SEARCH_ALLOWED'=> ($auth->acl_get('a_user')) ? true : false, - 'S_JABBER_ENABLED' => ($config['jab_enable']) ? true : false, + 'S_JABBER_ENABLED' => $config['jab_enable'], 'S_IN_SEARCH_POPUP' => ($form && $field) ? true : false, 'S_SEARCH_USER' => ($mode == 'searchuser' || ($mode == '' && $submit)), 'S_FORM_NAME' => $form, -- cgit v1.2.1