mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
fix for FormHelper::select() showEmpty
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4067 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
ecb2b8c786
commit
b72ab690d4
1 changed files with 3 additions and 5 deletions
|
@ -471,11 +471,9 @@ class FormHelper extends AppHelper {
|
|||
if($showEmpty === true) {
|
||||
$showEmpty = '';
|
||||
}
|
||||
if (isset($options['']) && is_array($options[''])) {
|
||||
$options = am($options, $options['']);
|
||||
unset($options['']);
|
||||
}
|
||||
$options = am(array('' => $showEmpty), $options);
|
||||
$options = array_reverse($options, true);
|
||||
$options[''] = $showEmpty;
|
||||
$options = array_reverse($options, true);
|
||||
}
|
||||
$select = am($select, $this->__selectOptions(array_reverse($options, true), $selected, array(), $showParents));
|
||||
$select[] = sprintf($this->Html->tags['selectend']);
|
||||
|
|
Loading…
Add table
Reference in a new issue