diff options
| -rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/New.pm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/perllib/FixMyStreet/App/Controller/Report/New.pm b/perllib/FixMyStreet/App/Controller/Report/New.pm index 7766e08a1..75f54facf 100644 --- a/perllib/FixMyStreet/App/Controller/Report/New.pm +++ b/perllib/FixMyStreet/App/Controller/Report/New.pm @@ -86,7 +86,7 @@ sub report_new : Path : Args(0) {      # work out the location for this report and do some checks      # Also show map if we're just updating the filters      return $c->forward('redirect_to_around') -      if $c->get_param('filter_update') || !$c->forward('determine_location'); +      if !$c->forward('determine_location') || $c->get_param('filter_update');      # create a problem from the submitted details      $c->stash->{template} = "report/new/fill_in_details.html"; | 
