Browse Source

fix error detail view.

Taylor Otwell 13 years ago
parent
commit
a5aaf33fe5
1 changed files with 8 additions and 2 deletions
  1. 8 2
      laravel/laravel.php

+ 8 - 2
laravel/laravel.php

@@ -32,9 +32,15 @@ $handler = function($exception)
 
 	call_user_func($config['handler'], $exception, $config);
 
-	if ( ! $config['detail'])
+	if ($config['detail'])
 	{
-		exit(1);
+		echo "<html><h2>Uncaught Exception</h2>
+			  <h3>Message:</h3>
+			  <pre>".$exception->getMessage()."</pre>
+			  <h3>Location:</h3>
+			  <pre>".$exception->getFile()." on line ".$exception->getLine()."</pre>
+			  <h3>Stack Trace:</h3>
+			  <pre>".$exception->getTraceAsString()."</pre></html>";
 	}
 };