diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-29 16:39:26 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-29 16:40:31 +0100 |
commit | 4c20ff6832d93d63a2369d58799cfbe47d6fa76f (patch) | |
tree | 9249ef1512292646512a5cff9d76616dec06dc9d /perllib | |
parent | d28465091fa36eb1158c425ee36af88c46d10c23 (diff) |
Don't have Other category in Bromley.
Diffstat (limited to 'perllib')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/New.pm | 5 |
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'); } } |