Subject: | Bleadperl v5.19.2-257-gc30fc27 fixes a bug in perl which HTML::SctripScripts relies on |
As per subject. The relevant ticket where this fact was discovered is https://rt.perl.org/rt3//Public/Bug/Display.html?id=119125
The patch to fix the problem for both old and new perls is:
--- StripScripts.pm~ 2009-11-05 09:55:10.000000000 +0100
+++ StripScripts.pm 2013-08-15 13:38:42.937802987 +0200
@@ -1473,7 +1473,7 @@
return $1
if $text =~ m/^(
- mailto:[\w\-!#$%&'*+-\/=?^_`{|}~.]{1,64} # localpart
+ mailto:[\w\-!#\$%&'*+-\/=?^_`{|}~.]{1,64} # localpart
\@ # @
[\w\-\.]{1,100} # domain
(?: # opt query string
Note that the change has no effect on current tests.
HTH && Regards,