Browse Source

fix eloquent model attribute resolution.

Taylor Otwell 13 years ago
parent
commit
eda46a815e
2 changed files with 3 additions and 3 deletions
  1. 1 1
      application/config/application.php
  2. 2 2
      laravel/database/eloquent/model.php

+ 1 - 1
application/config/application.php

@@ -54,7 +54,7 @@ return array(
 	|
 	*/
 
-	'profiler' => true,
+	'profiler' => false,
 
 	/*
 	|--------------------------------------------------------------------------

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

@@ -698,11 +698,11 @@ abstract class Model {
 		// to perform the appropriate action based on the method.
 		if (starts_with($method, 'get_'))
 		{
-			return $this->attributes[substr($method, 4)];
+			return $this->get_attribute(substr($method, 4));
 		}
 		elseif (starts_with($method, 'set_'))
 		{
-			$this->attributes[substr($method, 4)] = $parameters[0];
+			$this->set_attribute(substr($method, 4), $parameters[0]);
 		}
 
 		// Finally we will assume that the method is actually the beginning of a