Browse Source

Fix bugs in Eloquent.

Taylor Otwell 12 years ago
parent
commit
b0eb9a8b42
1 changed files with 3 additions and 3 deletions
  1. 3 3
      laravel/database/eloquent/model.php

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

@@ -711,10 +711,10 @@ abstract class Model {
 	{
 		foreach (array('attributes', 'relationships') as $source)
 		{
-			if (array_key_exists($key, $this->$source)) return true;
+			if (array_key_exists($key, $this->{$source})) return ! empty($this->{$source}[$key]);
 		}
 
-		if (method_exists($this, $key)) return true;
+		return false;
 	}
 
 	/**
@@ -727,7 +727,7 @@ abstract class Model {
 	{
 		foreach (array('attributes', 'relationships') as $source)
 		{
-			unset($this->$source[$key]);
+			unset($this->{$source}[$key]);
 		}
 	}