mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-10-20 11:59 pm

[dw-free] generated html for links to tags containing "about:" is malformed

[commit: http://hg.dwscoalition.org/dw-free/rev/19ef549e1702]

http://bugs.dwscoalition.org/show_bug.cgi?id=1371

Less strict purging of 'about:' in URLs.

Patch by [personal profile] kareila.

Files modified:
  • cgi-bin/LJ/CleanHTML.pm
--------------------------------------------------------------------------------
diff -r 7e425798f29e -r 19ef549e1702 cgi-bin/LJ/CleanHTML.pm
--- a/cgi-bin/LJ/CleanHTML.pm	Tue Oct 20 17:27:18 2009 +0000
+++ b/cgi-bin/LJ/CleanHTML.pm	Tue Oct 20 23:59:55 2009 +0000
@@ -588,7 +588,7 @@ sub clean
                     # IE sucks:
                     my $nowhite = $hash->{$attr};
                     $nowhite =~ s/[\s\x0b]+//g;
-                    if ($nowhite =~ /(?:jscript|livescript|javascript|vbscript|about|data):/ix) {
+                    if ($nowhite =~ /(?:jscript|livescript|javascript|vbscript|^about|data):/ix) {
                         delete $hash->{$attr};
                         next;
                     }
--------------------------------------------------------------------------------
kareila: "PERL!" (perl)

[personal profile] kareila 2009-10-21 01:04 am (UTC)(link)
I love the fact that you condensed my eight-line patch to a one-character change.