From: Wil Mahan Date: Mon, 11 Oct 2004 22:10:14 +0000 (+0000) Subject: Also add " to disallowed URI characters, per RFC 2396, fixing X-Git-Tag: 1.5.0alpha1~1578 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=07ba17d234a99149bc1ed1cd557095255639234f;p=lhc%2Fweb%2Fwiklou.git Also add " to disallowed URI characters, per RFC 2396, fixing some more test cases. --- diff --git a/includes/Parser.php b/includes/Parser.php index 04ac280182..1e53ef8451 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -38,7 +38,7 @@ define( 'UNIQ_PREFIX', 'NaodW29'); define( 'URL_PROTOCOLS', 'http|https|ftp|irc|gopher|news|mailto' ); define( 'HTTP_PROTOCOLS', 'http|https' ); # Everything except bracket, space, or control characters -define( 'EXT_LINK_URL_CLASS', '[^]<>\\x00-\\x20\\x7F]' ); +define( 'EXT_LINK_URL_CLASS', '[^]<>"\\x00-\\x20\\x7F]' ); # Including space define( 'EXT_LINK_TEXT_CLASS', '[^\]\\x00-\\x1F\\x7F]' ); define( 'EXT_IMAGE_FNAME_CLASS', '[A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]' );