Skip to content

Commit

Permalink
Fix PHP 5.3 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bancer committed Sep 12, 2018
1 parent a7a49c5 commit d7b5cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/View/Helper/FormHelper.php
Expand Up @@ -1061,7 +1061,7 @@ public function input($fieldName, $options = array()) {
$radioOptions = (array)$options['options'];
unset($options['options']);
} else {
$radioOptions = [];
$radioOptions = array();
}

$label = $this->_getLabel($fieldName, $options);
Expand Down

0 comments on commit d7b5cda

Please sign in to comment.