summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-11 16:43:54 +0400
committerAndrew Dolgov <[email protected]>2011-04-11 16:43:54 +0400
commit388c645a8b0caeeb32a2dc7472987af3da334adf (patch)
treed03ac8d8085b3f5cf95452c3910467ffcdca1050 /functions.php
parentf4f0f80d2118437e5047ba266f92d7acb3c38fb7 (diff)
block STRIP_UNSAFE_TAGS (force enable)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index f8ea2503e..98158029f 100644
--- a/functions.php
+++ b/functions.php
@@ -3754,9 +3754,9 @@
$res = trim($str); if (!$res) return '';
- if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
- $res = $purifier->purify($res);
- }
+// if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
+ $res = $purifier->purify($res);
+// }
if (get_pref($link, "STRIP_IMAGES", $owner)) {
$res = preg_replace('/<img[^>]+>/is', '', $res);