Browse Source

Fix has_and_belongs_to_many eager loading initialization bug.

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

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

@@ -87,7 +87,7 @@ class Hydrator {
 		// are initialized to an array and "one" relationships are initialized to null.
 		// are initialized to an array and "one" relationships are initialized to null.
 		foreach ($parents as &$parent)
 		foreach ($parents as &$parent)
 		{
 		{
-			$parent->ignore[$include] = (strpos($eloquent->relating, 'has_many') === 0) ? array() : null;
+			$parent->ignore[$include] = (in_array($eloquent->relating, array('has_many', 'has_and_belongs_to_many'))) ? array() : null;
 		}
 		}
 
 
 		if ($eloquent->relating == 'has_one')
 		if ($eloquent->relating == 'has_one')