setting content_type for error actions
wreis [Thu, 14 Feb 2008 03:03:24 +0000 (03:03 +0000)]
lib/Reaction/UI/Controller/Root.pm

index 43c02da..e143bc1 100644 (file)
@@ -37,14 +37,16 @@ sub end :Private {
 
 sub error_404 :Private {
   my ($self, $c) = @_;
-  $c->res->body("Error 404: File not Found");
+  $c->res->body("Error 404: Not Found");
   $c->res->status(404);
+  $c->res->content_type('text/plain');
 }
 
 sub error_403 :Private {
   my ($self, $c) = @_;
   $c->res->body("Error 403: Forbidden");
   $c->res->status(403);
+  $c->res->content_type('text/plain');
 }
 
 1;