Commit f2ccc688 authored by Franz Liedke's avatar Franz Liedke

Ignore NULL values when determining whether a model object is dirty.

parent 3ba5c00e
......@@ -536,7 +536,7 @@ abstract class Model {
foreach ($this->attributes as $key => $value)
{
if ( ! isset($this->original[$key]) or $value !== $this->original[$key])
if ( ! array_key_exists($key, $this->original) or $value !== $this->original[$key])
{
$dirty[$key] = $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