|
|
@@ -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;
|