aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2012-05-29 16:39:26 +0100
committerMatthew Somerville <matthew@mysociety.org>2012-05-29 16:40:31 +0100
commit4c20ff6832d93d63a2369d58799cfbe47d6fa76f (patch)
tree9249ef1512292646512a5cff9d76616dec06dc9d /perllib
parentd28465091fa36eb1158c425ee36af88c46d10c23 (diff)
Don't have Other category in Bromley.
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/App/Controller/Report/New.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/New.pm b/perllib/FixMyStreet/App/Controller/Report/New.pm
index 37ff1ae76..daaaca499 100644
--- a/perllib/FixMyStreet/App/Controller/Report/New.pm
+++ b/perllib/FixMyStreet/App/Controller/Report/New.pm
@@ -595,8 +595,9 @@ sub setup_categories_and_councils : Private {
}
if (@category_options) {
- @category_options =
- ( _('-- Pick a category --'), @category_options, _('Other') );
+ @category_options = ( _('-- Pick a category --'), @category_options );
+ push @category_options, _('Other')
+ unless $first_council->{id} == 2482;
$category_label = _('Category');
}
}