X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fedit.mc;h=be35470e1c289495969dabdd315b648ea84a5e3e;hp=1e64568d02ce78effbb100903dedccf251820750;hb=5be3dea6bacf251661cfa9b3317b3b62e01da295;hpb=acb6d79920e987e5235c1ebd415a893438844ebd diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 1e64568..be35470 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.39 2008-10-29 11:04:44 mike Exp $ +%# $Id: edit.mc,v 1.40 2009-04-15 18:16:46 wosch Exp $ <%args> $op $id => undef ### should be extracted using utf8param() @@ -46,7 +46,7 @@ if ((!defined $port || $port eq "") && # Port-guessing based on defaults for each protocol $port = $protocol eq "Z39.50" ? 210 : 80; warn "guessed port $port"; - $r->param(port => $port); + &utf8param($r, port => $port); } my $newid; @@ -340,7 +340,7 @@ my @fields = # Update record with submitted data my %fieldsByKey = map { ( $_->[0], $_) } @fields; my %data; -foreach my $key ($r->param()) { +foreach my $key (&utf8param($r)) { next if grep { $key eq $_ } qw(op id update); $data{$key} = utf8param($r, $key); }