boolean value handling fix
This commit is contained in:
parent
fddaa17afb
commit
c417a3b3a6
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class Doctrine_Formatter extends Doctrine_Connection_Module
|
||||||
{
|
{
|
||||||
if (is_array($item)) {
|
if (is_array($item)) {
|
||||||
foreach ($item as $k => $value) {
|
foreach ($item as $k => $value) {
|
||||||
if (is_bool($item)) {
|
if (is_bool($value)) {
|
||||||
$item[$k] = (int) $value;
|
$item[$k] = (int) $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue