diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-04-07 15:45:54 +0100 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-04-07 15:45:54 +0100 |
commit | 8dfccdf811c575bd80a1b6ff4b03fec2fe66827b (patch) | |
tree | c6ed4a30bd24f57e5fa629cf10abc34a4a8e3981 /web | |
parent | d0059b5b46bf16d5adbeddffc412699a8c815725 (diff) | |
parent | 473bca111dc1b14f1535ec56de83243c50ba04d7 (diff) |
Merge branch 'master' into migrate_to_catalyst
Diffstat (limited to 'web')
-rwxr-xr-x | web/index.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/index.cgi b/web/index.cgi index 14d4177ac..42473849e 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -133,6 +133,8 @@ sub front_page { my $out = '<p id="expl"><strong>' . _('Report, view, or discuss local problems') . '</strong>'; my $subhead = _('(like graffiti, fly tipping, broken paving slabs, or street lighting)'); + $subhead = '(like graffiti, fly tipping, or broken paving slabs)' + if $q->{site} eq 'southampton'; $out .= '<br><small>' . $subhead . '</small>' if $subhead ne ' '; $out .= '</p>'; #if (my $url = mySociety::Config::get('IPHONE_URL')) { @@ -560,6 +562,7 @@ please specify the closest point on land.')) unless %$all_councils; foreach (@$categories) { $council_ok{$_->{area_id}} = 1; next if $_->{category} eq _('Other'); + next if $q->{site} eq 'southampton' && $_->{category} eq 'Street lighting'; push @categories, $_->{category}; } if ($q->{site} eq 'scambs') { |