diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-20 19:41:03 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-20 19:41:03 -0700 |
commit | 35fc7328de3237ef9727e6f729ffe4df4697a421 (patch) | |
tree | ab8aeb57ace7c03c660edcd740e512de44e0db54 /Zotlabs/Lib | |
parent | 7a611c6d47020d227630a96de8026da4dae5f862 (diff) | |
download | volse-hubzilla-35fc7328de3237ef9727e6f729ffe4df4697a421.tar.gz volse-hubzilla-35fc7328de3237ef9727e6f729ffe4df4697a421.tar.bz2 volse-hubzilla-35fc7328de3237ef9727e6f729ffe4df4697a421.zip |
even more fine tuning of the markdown purifier - especially when used with the wiki
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/MarkdownSoap.php | 2 | ||||
-rw-r--r-- | Zotlabs/Lib/NativeWikiPage.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/MarkdownSoap.php b/Zotlabs/Lib/MarkdownSoap.php index 8cc18d513..cf1446f45 100644 --- a/Zotlabs/Lib/MarkdownSoap.php +++ b/Zotlabs/Lib/MarkdownSoap.php @@ -81,7 +81,7 @@ class MarkdownSoap { $s = str_replace("\t",' ',$s); $s = str_replace(' ',' ',$s); $s = purify_html($s); - $s = str_replace(' '," ",$s); + $s = str_replace([' ', mb_convert_encoding(' ','UTF-8','HTML-ENTITIES')], [ ' ', ' ' ],$s); $s = str_replace(['<br>','<br />'],["\n","\n"],$s); return $s; } diff --git a/Zotlabs/Lib/NativeWikiPage.php b/Zotlabs/Lib/NativeWikiPage.php index 3d6da7779..960fe014e 100644 --- a/Zotlabs/Lib/NativeWikiPage.php +++ b/Zotlabs/Lib/NativeWikiPage.php @@ -156,7 +156,7 @@ class NativeWikiPage { $content = $item['body']; return [ - 'content' => json_encode($content), + 'content' => $content, 'mimeType' => $w['mimeType'], 'message' => '', 'success' => true |