Browse Source

send() does not have a useful error code.

mark_story 11 years ago
parent
commit
82ddbcfd37
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Error/ErrorHandler.php

+ 1 - 1
src/Error/ErrorHandler.php

@@ -174,7 +174,7 @@ class ErrorHandler extends BaseErrorHandler {
 			echo $response;
 			return;
 		}
-		echo $response->send();
+		$response->send();
 	}
 
 }