whitespace in error.php

This commit is contained in:
Evan Prodromou 2009-08-14 08:04:03 -07:00
parent 347f74d650
commit 2cf50ea432

View File

@ -72,7 +72,7 @@ class ErrorAction extends Action
$status_string = $this->status[$this->code]; $status_string = $this->status[$this->code];
header('HTTP/1.1 '.$this->code.' '.$status_string); header('HTTP/1.1 '.$this->code.' '.$status_string);
} }
/** /**
* Display content. * Display content.
* *
@ -97,11 +97,11 @@ class ErrorAction extends Action
{ {
return true; return true;
} }
function showPage() function showPage()
{ {
parent::showPage(); parent::showPage();
// We don't want to have any more output after this // We don't want to have any more output after this
exit(); exit();
} }