From c152c716a76cee57272f02150b19acccf019de0e Mon Sep 17 00:00:00 2001 From: bermiferrer Date: Sat, 16 Feb 2008 18:59:25 +0000 Subject: [PATCH] Fixing #119. Akelos was silencing fatal errors on controllers, which could lead to confusing debugging when having syntax errors on controllers and views. git-svn-id: http://svn.akelos.org/trunk@479 a2fa5c27-f921-0410-a72c-bf682d381be0 --- lib/AkRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AkRequest.php b/lib/AkRequest.php index 47a0726..971448b 100644 --- a/lib/AkRequest.php +++ b/lib/AkRequest.php @@ -751,7 +751,7 @@ class AkRequest extends AkObject include_once($module_shared_model); } - if(@!include_once($controller_path)){ + if(!include_once($controller_path)){ if(AK_ENVIRONMENT == 'development'){ trigger_error(Ak::t('Could not find the file /app/controllers/%controller_file_name for '. 'the controller %controller_class_name', -- 2.11.4.GIT