Colin Viebrock 13 years ago
parent
commit
7c7734d8e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/database/eloquent/model.php

+ 1 - 1
laravel/database/eloquent/model.php

@@ -405,7 +405,7 @@ abstract class Model {
 	 */
 	 */
 	public function changed($attribute)
 	public function changed($attribute)
 	{
 	{
-		array_get($this->attributes, $attribute) !== array_get($this->original, $attribute);
+		return array_get($this->attributes, $attribute) !== array_get($this->original, $attribute);
 	}
 	}
 
 
 	/**
 	/**