mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding fix for #2552, fixes JavascriptHelper::object does not convert boolean values correctly
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5046 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
4353341e2c
commit
82755f6685
1 changed files with 3 additions and 0 deletions
|
@ -355,6 +355,9 @@ class JavascriptHelper extends AppHelper {
|
|||
if ($val === null) {
|
||||
$val = 'null';
|
||||
}
|
||||
if (is_bool($val)){
|
||||
$val = ife($val, 'true', 'false');
|
||||
}
|
||||
}
|
||||
|
||||
if (!$numeric) {
|
||||
|
|
Loading…
Reference in a new issue