blob: 9f1cc6535054f75ebd927715cfeaa641ad691fd1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- lib/RSS.pm.orig Wed Apr 21 15:14:43 2004
+++ lib/RSS.pm Wed Apr 6 13:06:54 2005
@@ -1800,6 +1800,7 @@
$text =~ s/&(?!(#[0-9]+|#x[0-9a-fA-F]+|\w+);)/&/g;
$text =~ s/&($entities);/$entity{$1}/g;
$text =~ s/</</g;
+ $text =~ s/>/>/g;
return $text;
}
|