Fixed coding to match standards from previous releases
diff --git a/system/core/Router.php b/system/core/Router.php
index 005e817..bd363da 100644
--- a/system/core/Router.php
+++ b/system/core/Router.php
@@ -87,10 +87,10 @@
 		}
 
 		// Load the routes.php file.
-		
+
 		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT))
 		{
-			@include(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT);
+			include(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT);
 		}
 		else
 		{