2
0
forked from Wavyzz/dolibarr

More default hmtl tags in restricthtmlonly

This commit is contained in:
Laurent Destailleur
2020-02-17 20:55:17 +01:00
parent be7bed7063
commit 6555f5d74f

View File

@@ -5591,8 +5591,8 @@ function dol_string_nohtmltag($stringtoclean, $removelinefeed = 1, $pagecodeto =
function dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles = 1) function dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles = 1)
{ {
$allowed_tags = array( $allowed_tags = array(
"html", "head", "meta", "body", "article", "a", "b", "br", "div", "dl", "dd", "dt", "em", "font", "img", "ins", "hr", "i", "li", "link", "html", "head", "meta", "body", "article", "a", "abbr", "b", "blockquote", "br", "cite", "div", "dl", "dd", "dt", "em", "font", "img", "ins", "hr", "i", "li", "link",
"ol", "p", "s", "section", "span", "strong", "title", "ol", "p", "q", "s", "section", "span", "strike", "strong", "title",
"table", "tr", "th", "td", "u", "ul" "table", "tr", "th", "td", "u", "ul"
); );
$allowed_tags_string = join("><", $allowed_tags); $allowed_tags_string = join("><", $allowed_tags);