From 36c79652ca3cec260fe8013df63c23cdfb4fb64d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 6 Jun 2005 03:06:53 +0000 Subject: [PATCH] Fix for bug 2319, accidentally reverted in last checkin --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- 2.20.1