fixed boolean conversion
This commit is contained in:
parent
71c52205ad
commit
10312db4eb
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue