From: Mike Taylor Date: Thu, 3 May 2007 14:15:56 +0000 (+0000) Subject: Use utf8param($r, $key) instead of $r->param($key) throughout. X-Git-Tag: CPAN-v1.02~434 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=c1c34528dbc95608f3dd6f6e32ab7dc97e53699e Use utf8param($r, $key) instead of $r->param($key) throughout. (Searches for Ã…rhus still don't work, though.) --- diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index e39a03a..dc7caee 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,4 +1,4 @@ -%# $Id: found.mc,v 1.29 2007-04-27 14:04:40 mike Exp $ +%# $Id: found.mc,v 1.30 2007-05-03 14:15:56 mike Exp $ <%once> sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -38,7 +38,7 @@ sub calc_reliability { our $conn = undef; <%perl> -my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param(); +my %params = map { ( $_, utf8param($r, $_)) } grep { $r->param($_) } $r->param(); my $query; if ($params{_query}) { $query = $params{_query};