aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/Page.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@fury.ukcod.org.uk>2011-02-21 12:00:29 +0000
committerMatthew Somerville <matthew@fury.ukcod.org.uk>2011-02-21 12:00:29 +0000
commitaca40d6e5da5736515748fc33ff100d9d2b2ee55 (patch)
tree2f9eed467db671b114f8d695697dade77990f37b /perllib/Page.pm
parent0405110b80e5702927ebc9d5d818c23c266fb1fc (diff)
Remove all encodes, they now cause double-encoding.
Diffstat (limited to 'perllib/Page.pm')
-rw-r--r--perllib/Page.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm
index 4e4e74169..8135d1306 100644
--- a/perllib/Page.pm
+++ b/perllib/Page.pm
@@ -562,7 +562,7 @@ sub display_problem_meta_line($$) {
$problem->{council} =~ s/\|.*//g;
my @councils = split /,/, $problem->{council};
my $areas_info = mySociety::MaPit::call('areas', \@councils);
- my $council = join(' and ', map { encode_utf8($areas_info->{$_}->{name}) } @councils);
+ my $council = join(' and ', map { $areas_info->{$_}->{name} } @councils);
$out .= '<small class="council_sent_info">';
$out .= $q->br() . sprintf(_('Sent to %s %s later'), $council, prettify_duration($problem->{whensent}, 'minute'));
$out .= '</small>';