Ignore NULL values when determining whether a model object is dirty.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user