diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-04 08:36:27 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-05 10:58:38 +0100 |
commit | 2bb93438a1664aa13a5a23b8600a7579a6eaa4c5 (patch) | |
tree | 585aa7c5c4d06a9782e8ee4f7ba1aca4515a2424 /lib | |
parent | 2fc01dc7d150e138d2b70e34d8aa816781dfdd36 (diff) |
Error page fix: use class static accessor correctly, suppress notices if we don't have the error code listed
Diffstat (limited to 'lib')
-rw-r--r-- | lib/error.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/error.php b/lib/error.php index 6a9b76be1..3162cfe65 100644 --- a/lib/error.php +++ b/lib/error.php @@ -70,7 +70,7 @@ class ErrorAction extends Action */ function extraHeaders() { - $status_string = $this->status[$this->code]; + $status_string = @self::$status[$this->code]; header('HTTP/1.1 '.$this->code.' '.$status_string); } @@ -92,7 +92,7 @@ class ErrorAction extends Action function title() { - return self::$status[$this->code]; + return @self::$status[$this->code]; } function isReadOnly($args) |