diff options
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Report.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report.pm b/perllib/FixMyStreet/App/Controller/Report.pm index f0b70b2e6..661505a49 100644 --- a/perllib/FixMyStreet/App/Controller/Report.pm +++ b/perllib/FixMyStreet/App/Controller/Report.pm @@ -66,7 +66,7 @@ sub display : Path('') : Args(1) { : $c->model('DB::Problem')->find( { id => $id } ); if ( !$problem ) { # bad id or id not found - $c->detach( '/page_not_found', [ _('Unknown problem ID') ] ); + $c->detach( '/page_error_404_not_found', [ _('Unknown problem ID') ] ); } # elsif () { |