Browse Source

fixed belongs_to eager loading bug when parent does not exist.

Taylor Otwell 14 years ago
parent
commit
c751844aab
1 changed files with 4 additions and 1 deletions
  1. 4 1
      system/db/eloquent/hydrator.php

+ 4 - 1
system/db/eloquent/hydrator.php

@@ -201,7 +201,10 @@ class Hydrator {
 		// -----------------------------------------------------
 		// -----------------------------------------------------
 		foreach ($parents as &$parent)
 		foreach ($parents as &$parent)
 		{
 		{
-			$parent->ignore[$include] = $children[$parent->$relating_key];
+			if (array_key_exists($parent->$relating_key, $children))
+			{
+				$parent->ignore[$include] = $children[$parent->$relating_key];
+			}
 		}
 		}
 	}
 	}