aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatthew <matthew>2007-05-17 10:07:20 +0000
committermatthew <matthew>2007-05-17 10:07:20 +0000
commit101f173f0393546d746c7eb7d21906da740533c4 (patch)
tree1de8595a186a8826c4f0e4dbe72ed072816c7886
parent0a17ddc6cf968d818bb2adce07f9f29184061277 (diff)
Don't remove City of from London.
-rw-r--r--perllib/Page.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm
index f1b0eda6e..fb4b3d767 100644
--- a/perllib/Page.pm
+++ b/perllib/Page.pm
@@ -6,7 +6,7 @@
# Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
#
-# $Id: Page.pm,v 1.51 2007-05-16 10:55:46 matthew Exp $
+# $Id: Page.pm,v 1.52 2007-05-17 10:07:20 matthew Exp $
#
package Page;
@@ -435,7 +435,7 @@ sub display_problem_updates {
sub canonicalise_council {
my $c = shift;
- $c =~ s/City of //;
+ $c =~ s/City of // unless $c =~ /London/;
$c =~ s/N\. /North /;
$c =~ s/E\. /East /;
$c =~ s/W\. /West /;