From 82624c237bcb8a0273e2455506a7ee141ce8c48d Mon Sep 17 00:00:00 2001 From: eldy <> Date: Thu, 30 Dec 2004 17:41:37 +0000 Subject: [PATCH] Fix: [ 1066468 ] Translated word gets corupted (&OUML instead of Ö) Fix: [ 1074810 ] XML Parsing Error --- wwwroot/cgi-bin/awstats.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index 7eeeb1ab..1daa35c2 100644 --- a/wwwroot/cgi-bin/awstats.pl +++ b/wwwroot/cgi-bin/awstats.pl @@ -4829,7 +4829,7 @@ sub ShowURLInfo { # Define urlprot my $urlprot='http'; if ($UseHTTPSLinkForUrl && $newkey =~ /^$UseHTTPSLinkForUrl/) { $urlprot='https'; } - print "".XMLEncode($nompage).""; + print "".XMLEncode($nompage).""; } else { print XMLEncode($nompage); @@ -8103,7 +8103,7 @@ if (scalar keys %HTMLOutput) { if (! $familyheadershown) { my $p=' '; if ($total_h) { $p=int(($total_h-$TotalFamily)/$total_h*1000)/10; $p="$p %"; } - print "".uc($Message[2]).""; + print "$Message[2]"; print "".($total_h-$TotalFamily)."$p "; print "\n"; $familyheadershown=1; @@ -8196,7 +8196,7 @@ if (scalar keys %HTMLOutput) { if (! $familyheadershown) { my $p=' '; if ($total_h) { $p=int(($total_h-$TotalFamily)/$total_h*1000)/10; $p="$p %"; } - print "".uc($Message[2]).""; + print "$Message[2]"; print " ".($total_h-$TotalFamily)."$p "; print "\n"; $familyheadershown=1; @@ -9551,7 +9551,7 @@ if (scalar keys %HTMLOutput) { if ($_url_k{$key}/($_url_p{$key}||1) > $max_k) { $max_k = $_url_k{$key}/($_url_p{$key}||1); } } foreach my $key (@keylist) { - print ""; + print "xx $key"; &ShowURLInfo($key); print ""; my $bredde_p=0; my $bredde_e=0; my $bredde_x=0; my $bredde_k=0; -- 2.47.3