From f26cfcb59da8e7109b2d919313789a3e934528bf Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Mon, 19 Apr 2004 17:04:22 +0000 Subject: [PATCH] allow del and ins, other xhtml tags might be worth to allow as well (acronym and similar) --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index f7c602a381..dd17a17e6d 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -1431,7 +1431,7 @@ class Parser $fname = "Parser::removeHTMLtags"; wfProfileIn( $fname ); $htmlpairs = array( # Tags that must be closed - "b", "i", "u", "font", "big", "small", "sub", "sup", "h1", + "b", "del", "i", "ins", "u", "font", "big", "small", "sub", "sup", "h1", "h2", "h3", "h4", "h5", "h6", "cite", "code", "em", "s", "strike", "strong", "tt", "var", "div", "center", "blockquote", "ol", "ul", "dl", "table", "caption", "pre", -- 2.20.1