summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorShane Synan <[email protected]>2017-01-24 18:39:17 -0600
committerShane Synan <[email protected]>2017-01-24 18:39:17 -0600
commit311cdb27f47f1a16a3bfb0cef555bab122fdc253 (patch)
tree591db65372aea9a6817f89df1092957c4f5a3a99 /include
parente3cdbd87bcb413e011c07b30954bdda3b5aa8089 (diff)
sanitize: allow dfn tag
Add <dfn> tag to allowed tags list. <dfn> represents the defining instance of a term in HTML.
Diffstat (limited to 'include')
-rw-r--r--include/functions2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions2.php b/include/functions2.php
index f0e352ed1..ff4ac2c77 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',