Commit 752a26cb authored by zYne's avatar zYne

--no commit message

--no commit message
parent 53cd5ed3
......@@ -425,6 +425,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
}
unset($tmp[$name]);
}
return $tmp;
}
/**
......@@ -1044,6 +1045,10 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
$this->_data[$v] = $this->_data[$v]->getIncremented();
}
if ($this->_data[$v] === null) {
throw new Doctrine_Record_Exception('Unexpected null value.');
}
$a[$v] = $this->_data[$v];
}
}
......
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