Commit 10312db4 authored by zYne's avatar zYne

fixed boolean conversion

parent 71c52205
...@@ -228,8 +228,10 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun ...@@ -228,8 +228,10 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
} }
} }
} else { } else {
if (is_bool($item)) {
$item = (int) $item; $item = (int) $item;
} }
}
return $item; return $item;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment