1
0
mirror of synced 2025-01-18 22:41:43 +03:00

boolean value handling fix

This commit is contained in:
zYne 2007-06-12 16:52:35 +00:00
parent fddaa17afb
commit c417a3b3a6

View File

@ -71,7 +71,7 @@ class Doctrine_Formatter extends Doctrine_Connection_Module
{
if (is_array($item)) {
foreach ($item as $k => $value) {
if (is_bool($item)) {
if (is_bool($value)) {
$item[$k] = (int) $value;
}
}