mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix PHP 5.3 syntax
This commit is contained in:
parent
a7a49c5f8e
commit
d7b5cda0ea
1 changed files with 1 additions and 1 deletions
|
@ -1061,7 +1061,7 @@ class FormHelper extends AppHelper {
|
|||
$radioOptions = (array)$options['options'];
|
||||
unset($options['options']);
|
||||
} else {
|
||||
$radioOptions = [];
|
||||
$radioOptions = array();
|
||||
}
|
||||
|
||||
$label = $this->_getLabel($fieldName, $options);
|
||||
|
|
Loading…
Reference in a new issue