Răsfoiți Sursa

Back out those changes :-/

Morten Brix Pedersen 25 ani în urmă
părinte
comite
50ac381eba
1 a modificat fișierele cu 7 adăugiri și 1 ștergeri
  1. 7 1
      pisg.pl

+ 7 - 1
pisg.pl

@@ -850,7 +850,13 @@ sub template_text
 
     foreach my $key (sort keys %hash) {
         $text =~ s/\[:$key\]/$hash{$key}/;
-        $text = htmlentities($text);
+        $text =~ s/ü/ü/g;
+        $text =~ s/ö/ö/g;
+        $text =~ s/ä/ä/g;
+        $text =~ s/ß/ß/g;
+        $text =~ s/ĺ/å/g;
+        $text =~ s/ć/æ/g;
+        $text =~ s/ř/ø/g;
     }
 
     return $text;