summaryrefslogtreecommitdiff
path: root/lib/clienterroraction.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-04 06:27:30 -0800
committerEvan Prodromou <evan@controlyourself.ca>2009-03-04 06:27:30 -0800
commitcf4e1872ab8109ea6a3230e43cc70899a17dd075 (patch)
tree6079bd5e34da9c86e1b23149be5d1a94f7257725 /lib/clienterroraction.php
parentf9babf6a7d4215e763a8c1766a2e6592fe274953 (diff)
Error actions use HTTP code name for title
Change the title of error actions to the HTTP code name, like 'internal server error'.
Diffstat (limited to 'lib/clienterroraction.php')
-rw-r--r--lib/clienterroraction.php15
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/clienterroraction.php b/lib/clienterroraction.php
index 5019dc06d..0c48414d5 100644
--- a/lib/clienterroraction.php
+++ b/lib/clienterroraction.php
@@ -49,7 +49,7 @@ class ClientErrorAction extends ErrorAction
function __construct($message='Error', $code=400)
{
parent::__construct($message, $code);
-
+
$this->status = array(400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
@@ -72,7 +72,7 @@ class ClientErrorAction extends ErrorAction
}
// XXX: Should these error actions even be invokable via URI?
-
+
function handle($args)
{
parent::handle($args);
@@ -84,11 +84,16 @@ class ClientErrorAction extends ErrorAction
}
$this->message = $this->trimmed('message');
-
+
if (!$this->message) {
- $this->message = "Client Error $this->code";
- }
+ $this->message = "Client Error $this->code";
+ }
$this->showPage();
}
+
+ function title()
+ {
+ return $this->status[$this->code];
+ }
}