From d81a843e73142ee9542ca9d3ed0c5b5c05f0075e Mon Sep 17 00:00:00 2001 From: zYne <zYne@625475ce-881a-0410-a577-b389adb331d8> Date: Fri, 20 Apr 2007 18:18:44 +0000 Subject: [PATCH] boolean type fix --- lib/Doctrine/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index dc3abfab6..87faf1bca 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1073,7 +1073,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite $a[$v] = gzcompress($this->_data[$v],5); break; case 'boolean': - $a[$v] = (int) $this->_data[$v]; + $a[$v] = $this->getTable()->getConnection()->convertBooleans($this->_data[$v]); break; case 'enum': $a[$v] = $this->_table->enumIndex($v,$this->_data[$v]);