aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perllib/FixMyStreet/App/Controller/Root.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Root.pm b/perllib/FixMyStreet/App/Controller/Root.pm
index 8b34e66ca..41bca4b7f 100644
--- a/perllib/FixMyStreet/App/Controller/Root.pm
+++ b/perllib/FixMyStreet/App/Controller/Root.pm
@@ -41,8 +41,11 @@ Standard 404 error page
sub default :Path {
my ( $self, $c ) = @_;
- $c->response->body( 'Page not found' );
- $c->response->status(404);
+
+ $c->response->body( "Fallen through to FixMyStreet::App default handler" );
+
+ # $c->response->body( 'Page not found' );
+ # $c->response->status(404);
}
=head2 end