Browse Source

fix syntax error in error class.

Taylor Otwell 13 years ago
parent
commit
95528adab5
2 changed files with 2 additions and 1 deletions
  1. 1 0
      application/routes.php
  2. 1 1
      system/error.php

+ 1 - 0
application/routes.php

@@ -17,6 +17,7 @@ return array(
 
 	'GET /' => function()
 	{
+		$this->
 		return View::make('home/index');
 	},
 

+ 1 - 1
system/error.php

@@ -66,7 +66,7 @@ class Error {
                                    ->bind('message', $message)
                                    ->bind('file', $file)
                                    ->bind('line', $e->getLine())
-                                   ->bind('trace', $e->getTraceAsString())
+                                   ->bind('trace', $e->getTraceAsString());
 			
 			Response::make($view, 500)->send();
 		}