From: Shane Synan Date: Wed, 25 Jan 2017 00:39:17 +0000 (-0600) Subject: sanitize: allow dfn tag X-Git-Tag: 17.4~74^2 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=311cdb27f47f1a16a3bfb0cef555bab122fdc253 sanitize: allow dfn tag Add tag to allowed tags list. represents the defining instance of a term in HTML. --- diff --git a/include/functions2.php b/include/functions2.php index f0e352ed..ff4ac2c7 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -978,7 +978,7 @@ $allowed_elements = array('a', 'address', 'acronym', 'audio', 'article', 'aside', 'b', 'bdi', 'bdo', 'big', 'blockquote', 'body', 'br', 'caption', 'cite', 'center', 'code', 'col', 'colgroup', - 'data', 'dd', 'del', 'details', 'description', 'div', 'dl', 'font', + 'data', 'dd', 'del', 'details', 'description', 'dfn', 'div', 'dl', 'font', 'dt', 'em', 'footer', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i', 'img', 'ins', 'kbd', 'li', 'main', 'mark', 'nav', 'noscript',