diff options
Diffstat (limited to 'web')
-rwxr-xr-x | web/photo.cgi | 2 | ||||
-rwxr-xr-x | web/reports.cgi | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/web/photo.cgi b/web/photo.cgi index fc89fc0f7..bd38e3bf1 100755 --- a/web/photo.cgi +++ b/web/photo.cgi @@ -39,7 +39,7 @@ sub main { print $photo; } -Page::do_fastcgi(\&main); +Page::do_fastcgi(\&main, 0, 1); sub resize { my ($photo, $size) = @_; diff --git a/web/reports.cgi b/web/reports.cgi index 1b8557a06..f0ecf9c7a 100755 --- a/web/reports.cgi +++ b/web/reports.cgi @@ -134,7 +134,7 @@ sub main { } my $type = 'council_problems'; # Problems sent to a council my (@params, %title_params); - $title_params{COUNCIL} = encode_utf8($area_name); + $title_params{COUNCIL} = $area_name; push @params, $one_council->{id} if $rss eq 'reports'; push @params, $ward ? $ward->{id} : $one_council->{id}; if ($ward && $rss eq 'reports') { @@ -213,9 +213,9 @@ sub main { my $url = Page::short_name($areas_info->{$_}, $areas_info); my $cobrand_url = Cobrand::url($cobrand, "/reports/$url", $q); print '><td align="left"><a href="' . $cobrand_url . '">' . - encode_utf8($areas_info->{$_}->{name}); + $areas_info->{$_}->{name}; if ($areas_info->{$_}->{parent_area} && $url =~ /,|%2C/) { - print ', ' . encode_utf8($areas_info->{$areas_info->{$_}->{parent_area}}->{name}); + print ', ' . $areas_info->{$areas_info->{$_}->{parent_area}}->{name}; } print '</a></td>'; summary_cell(\@{$open{$_}{new}}); @@ -234,7 +234,7 @@ sub main { } print '</table>'; } else { - my $name = encode_utf8($one_council->{name}); + my $name = $one_council->{name}; if (!$name) { print Page::header($q, title=>_("Summary reports")); print "Council with identifier " . ent($one_council->{id}). " not found. "; |