diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-06-21 13:55:40 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-06-21 14:08:16 +0100 |
commit | 8bc12f19e115085083b68ed3bc73f80413048d15 (patch) | |
tree | 54f23b7888945a38924d1972b4655ec5de7e0688 | |
parent | 65b6b5eba895444aa2fc39f323ddac43bb608ba9 (diff) |
Unused variable.
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/New.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/New.pm b/perllib/FixMyStreet/App/Controller/Report/New.pm index 782200587..70ed0cd73 100644 --- a/perllib/FixMyStreet/App/Controller/Report/New.pm +++ b/perllib/FixMyStreet/App/Controller/Report/New.pm @@ -186,7 +186,6 @@ sub report_form_ajax : Path('ajax') : Args(0) { # render templates to get the html my $category = $c->render_fragment( 'report/new/category.html'); my $councils_text = $c->render_fragment( 'report/new/councils_text.html'); - my $has_open311 = keys %{ $c->stash->{category_extras} }; my $extra_name_info = $c->stash->{extra_name_info} ? $c->render_fragment('report/new/extra_name.html') : ''; @@ -195,7 +194,6 @@ sub report_form_ajax : Path('ajax') : Args(0) { { councils_text => $councils_text, category => $category, - has_open311 => $has_open311, extra_name_info => $extra_name_info, } ); |