1
0
mirror of synced 2025-01-31 12:32:59 +03:00
This commit is contained in:
zYne 2007-05-17 21:48:12 +00:00
parent a1ef5fbf4b
commit b6b91ac0ee

View File

@ -129,8 +129,8 @@ class Doctrine_Record_Filter
$tmp = $data;
$data = array();
foreach ($this->_table->getColumnNames() as $name) {
$type = $this->_table->getTypeOf($name);
foreach ($this->_record->getTable()->getColumnNames() as $name) {
$type = $this->_record->getTable()->getTypeOf($name);
if ( ! isset($tmp[$name])) {
$data[$name] = self::$null;
@ -163,7 +163,7 @@ class Doctrine_Record_Filter
}
break;
case 'enum':
$data[$name] = $this->_table->enumValue($name, $tmp[$name]);
$data[$name] = $this->_record->getTable()->enumValue($name, $tmp[$name]);
break;
default:
$data[$name] = $tmp[$name];