diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-06-15 16:47:21 +0100 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-06-15 16:47:21 +0100 |
commit | 4e04d0f2abbbd368b9ad4148bb970c1c7130b30d (patch) | |
tree | 48ffd384a09f215ff35f090d09732f46f94ca235 /perllib/FixMyStreet/App/Controller/Root.pm | |
parent | 1b0114aa9aafb612b73205989b1316ba1dfd4857 (diff) | |
parent | d6e4d4998bf0327567d745c256a76fee966faf35 (diff) |
Merge branch 'master' of ssh://git.mysociety.org/data/git/public/fixmystreet
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Root.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Root.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Root.pm b/perllib/FixMyStreet/App/Controller/Root.pm index 7e2acc03c..9cdf0b523 100644 --- a/perllib/FixMyStreet/App/Controller/Root.pm +++ b/perllib/FixMyStreet/App/Controller/Root.pm @@ -89,8 +89,8 @@ sub page_error_404_not_found : Private { sub page_error_410_gone : Private { my ( $self, $c, $error_msg ) = @_; - $c->stash->{template} = 'errors/page_error_410_gone.html'; - $c->stash->{error_msg} = $error_msg; + $c->stash->{template} = 'index.html'; + $c->stash->{error} = $error_msg; $c->response->status(410); } |