From: Brion Vibber Date: Mon, 6 Jun 2005 03:06:53 +0000 (+0000) Subject: Fix for bug 2319, accidentally reverted in last checkin X-Git-Tag: 1.5.0beta1~212 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=36c79652ca3cec260fe8013df63c23cdfb4fb64d;p=lhc%2Fweb%2Fwiklou.git Fix for bug 2319, accidentally reverted in last checkin --- diff --git a/includes/Parser.php b/includes/Parser.php index 2263f8dc27..0c7a142f65 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -276,7 +276,7 @@ class Parser $start = '//'; } else { - $start = "/<$tag([^>]*)>/i"; + $start = "/<$tag(\\s+[^>]*|\\s*)>/i"; $end = "/<\\/$tag\\s*>/i"; }