diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2015-08-19 15:44:02 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2015-08-19 15:46:16 +0100 |
commit | efa106c52e2668715d17b860a8afa71501691185 (patch) | |
tree | 510aba995e818f5500b980b2a904a3e790b0b1c8 /bin/fixmystreet.com | |
parent | ad81d87a957b5590fbcba3f2325526a9cddcbb7f (diff) |
Move "missing" handling to separate column.
Diffstat (limited to 'bin/fixmystreet.com')
-rwxr-xr-x | bin/fixmystreet.com/showcouncilrates | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/fixmystreet.com/showcouncilrates b/bin/fixmystreet.com/showcouncilrates index 1dacae597..a3465c575 100755 --- a/bin/fixmystreet.com/showcouncilrates +++ b/bin/fixmystreet.com/showcouncilrates @@ -38,7 +38,6 @@ my $stats = dbh()->selectall_arrayref($query, { Slice => {} }); my @councils; foreach my $row (@$stats) { if ($row->{council}) { - $row->{council} =~ s/\|.*//g; my @council_ids = split(/,/, $row->{council}); push(@councils, @council_ids); $row->{council} = \@council_ids; |