Browse Source

Refactoring View class.

Taylor Otwell 13 years ago
parent
commit
bbc8b8f954
1 changed files with 1 additions and 8 deletions
  1. 1 8
      system/view.php

+ 1 - 8
system/view.php

@@ -78,14 +78,7 @@ class View {
 		//
 		// Otherwise, a white screen of death will be shown if an exception occurs
 		// while rendering the view.
-		try
-		{
-			include $path;
-		}
-		catch (\Exception $e)
-		{
-			Error::handle($e);
-		}
+		try { include $path; } catch (\Exception $e) { Error::handle($e); }
 
 		return ob_get_clean();
 	}