1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/12804] Dont use ternary form

PHPBB3-12804
This commit is contained in:
PayBas
2014-07-07 11:25:33 +02:00
parent fbc07d3b14
commit 0a286e044b
2 changed files with 2 additions and 2 deletions

View File

@@ -394,7 +394,7 @@ class ucp_profile
$template->assign_vars(array(
'ERROR' => (sizeof($error)) ? implode('<br />', $error) : '',
'S_JABBER_ENABLED' => ($config['jab_enable']) ? true : false,
'S_JABBER_ENABLED' => $config['jab_enable'],
'JABBER' => $data['jabber'],
));