Changing ternary operator usage syntax to be compliant with php 5.2 and below

This commit is contained in:
ADmad 2010-02-28 13:05:00 +05:30
parent e0abe99d7d
commit 8dfadafc88

View file

@ -909,7 +909,7 @@ class FormHelper extends AppHelper {
}
$out['input'] = $input;
$format = $format ?: array('before', 'label', 'between', 'input', 'after', 'error');
$format = $format ? $format : array('before', 'label', 'between', 'input', 'after', 'error');
$output = '';
foreach ($format as $element) {
$output .= $out[$element];