diff --git a/application/config/application.php b/application/config/application.php index 8cbf104a..01f07845 100755 --- a/application/config/application.php +++ b/application/config/application.php @@ -54,7 +54,7 @@ | */ - 'profiler' => true, + 'profiler' => false, /* |-------------------------------------------------------------------------- diff --git a/laravel/database/eloquent/model.php b/laravel/database/eloquent/model.php index 53ff52c3..3ab50c74 100644 --- a/laravel/database/eloquent/model.php +++ b/laravel/database/eloquent/model.php @@ -698,11 +698,11 @@ public function __call($method, $parameters) // 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