diff options
Diffstat (limited to 'lib/MasterWebInterface/Handler/ErrorPages.pm')
| -rwxr-xr-x | lib/MasterWebInterface/Handler/ErrorPages.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MasterWebInterface/Handler/ErrorPages.pm b/lib/MasterWebInterface/Handler/ErrorPages.pm index 1678acc..81e4091 100755 --- a/lib/MasterWebInterface/Handler/ErrorPages.pm +++ b/lib/MasterWebInterface/Handler/ErrorPages.pm @@ -31,7 +31,7 @@ sub handle404 } $self->resStatus(404); - $self->htmlHeader(title => '404 - Not Found'); + $self->htmlHeader(title => '404 - Not Found', meta_desc => "The page at this link was not found. Try the homepage and find it from there?"); $self->htmlFilterBox(title => "Servers", action => "/s", sel => 's', fq => ''); div class => "mainbox warning"; @@ -71,7 +71,7 @@ sub handle500 } $self->resStatus(500); - $self->htmlHeader(title => '500 - Internal Server Error'); + $self->htmlHeader(title => '500 - Internal Server Error', meta_desc => "Catastrophic failure. Try again later or ping the website admin."); $self->htmlFilterBox(title => "Servers", action => "/s", sel => 's', fq => ''); div class => "mainbox warning"; |
