aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rwxr-xr-xweb/index.cgi3
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index cce185f08..7d42f6e82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@
/private_locale
._*
.sass-cache
-
+perl-external/
+inc/
diff --git a/web/index.cgi b/web/index.cgi
index a563548aa..c8fdb6158 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')) {
@@ -580,6 +582,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') {