diff options
Diffstat (limited to 'Echolot')
-rw-r--r-- | Echolot/Stats.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index adf5626..519b982 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -1,7 +1,7 @@ package Echolot::Stats; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Stats.pm,v 1.17 2002/07/13 19:58:27 weasel Exp $ +# $Id: Stats.pm,v 1.18 2002/07/13 20:33:33 weasel Exp $ # =pod @@ -269,10 +269,10 @@ sub write_file($$;$) { return 1 unless defined $html_template; - $output =~ s/"/"/; - $output =~ s/</</; - $output =~ s/>/>/; - $output =~ s/&/&/; + $output =~ s/&/&/g; + $output =~ s/"/"/g; + $output =~ s/</</g; + $output =~ s/>/>/g; my $template = HTML::Template->new( filename => $html_template, strict => 0, |