diff options
author | PayBas <contact@paybas.com> | 2014-07-07 11:25:33 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-07-07 11:28:06 +0200 |
commit | 0a286e044b3d7b71edea5f79213e6c008db66986 (patch) | |
tree | 37775fe8e3a6aca6c057fa2e84e4fe5d0e81dbd2 /phpBB/includes/ucp/ucp_profile.php | |
parent | fbc07d3b14faf345c3bcd79204b32085e6260fb5 (diff) | |
download | forums-0a286e044b3d7b71edea5f79213e6c008db66986.tar forums-0a286e044b3d7b71edea5f79213e6c008db66986.tar.gz forums-0a286e044b3d7b71edea5f79213e6c008db66986.tar.bz2 forums-0a286e044b3d7b71edea5f79213e6c008db66986.tar.xz forums-0a286e044b3d7b71edea5f79213e6c008db66986.zip |
[ticket/12804] Dont use ternary form
PHPBB3-12804
Diffstat (limited to 'phpBB/includes/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 6940f18345..a315b167d7 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -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'], )); |