fixed boolean conversion
This commit is contained in:
parent
71c52205ad
commit
10312db4eb
@ -228,7 +228,9 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$item = (int) $item;
|
||||
if (is_bool($item)) {
|
||||
$item = (int) $item;
|
||||
}
|
||||
}
|
||||
return $item;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user