Commit ee8c1a0a authored by zYne's avatar zYne

boolean parsing updated

parent e80b339d
...@@ -87,10 +87,8 @@ abstract class Doctrine_Query_Condition extends Doctrine_Query_Part ...@@ -87,10 +87,8 @@ abstract class Doctrine_Query_Condition extends Doctrine_Query_Part
// check that value isn't a string // check that value isn't a string
if (strpos($value, '\'') === false) { if (strpos($value, '\'') === false) {
// parse booleans // parse booleans
if ($value == 'true') $value = $this->query->getConnection()
$value = 1; ->dataDict->parseBoolean($value);
elseif ($value == 'false')
$value = 0;
$a = explode('.', $value); $a = explode('.', $value);
......
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