Browse Source

fixed attribute setting bug in hydrator.

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

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

@@ -49,8 +49,9 @@ class Hydrator {
 
 
 		foreach ($results as $result)
 		foreach ($results as $result)
 		{
 		{
-			$model = new $class((array) $result);
+			$model = new $class;
 
 
+			$model->attributes = (array) $result;
 			$model->exists = true;
 			$model->exists = true;
 
 
 			// -----------------------------------------------------
 			// -----------------------------------------------------
@@ -240,8 +241,9 @@ class Hydrator {
 		// -----------------------------------------------------
 		// -----------------------------------------------------
 		foreach ($children as $child)
 		foreach ($children as $child)
 		{
 		{
-			$related = new $class((array) $child);
+			$related = new $class;
 
 
+			$related->attributes = (array) $child;
 			$related->exists = true;
 			$related->exists = true;
 
 
 			// -----------------------------------------------------
 			// -----------------------------------------------------