X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=Util.pm;h=9acd5d11bcd416b5d5bb534c4d2cddb6665bced6;hb=f1af5002f6710b37cf3d2b3903ef3103a34424a6;hp=76accc9af870e17fc85fb413ff2f1575250e0ea4;hpb=6695ab182b22c172628e12efcc0da5d29e74c7f0;p=mirror%2Fuserdir-ldap-cgi.git diff --git a/Util.pm b/Util.pm index 76accc9..9acd5d1 100644 --- a/Util.pm +++ b/Util.pm @@ -171,7 +171,7 @@ sub FormatFingerPrint { $out .= " " if ($_ == 7); } } else { - foreach (0..int(length($in)/2)) { + foreach (0..int(length($in)/4)) { $out .= substr($in, $_*4, 4)." "; } } @@ -256,7 +256,7 @@ sub LookupCountry { my $htmlhdrsent = 0; sub HTMLSendHeader { - print "Content-type: text/html\n\n" if (!$htmlhdrsent); + print "Content-type: text/html; charset=utf-8\n\n" if (!$htmlhdrsent); $htmlhdrsent = 1; }