diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-27 13:52:08 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-27 13:52:08 +0100 |
commit | a6d13f290b235b5c4a511079b622866573e8d2e3 (patch) | |
tree | c35bf47f07a4e61b9602d4b13bb961138b7bb550 /Zotlabs/Module | |
parent | b6cad08273f87b22c020f11242a4ef2797cffbe1 (diff) | |
download | volse-hubzilla-a6d13f290b235b5c4a511079b622866573e8d2e3.tar.gz volse-hubzilla-a6d13f290b235b5c4a511079b622866573e8d2e3.tar.bz2 volse-hubzilla-a6d13f290b235b5c4a511079b622866573e8d2e3.zip |
fix js issue in markdown mimetype wikis if content contains quotes
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Wiki.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 32b484eea..15806ffc3 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -234,10 +234,8 @@ class Wiki extends \Zotlabs\Web\Controller { $mimeType = $p['mimeType']; - $rawContent = (($p['mimeType'] == 'text/bbcode') - ? htmlspecialchars_decode(json_decode($p['content']),ENT_COMPAT) - : htmlspecialchars_decode($p['content'],ENT_COMPAT) - ); + $rawContent = htmlspecialchars_decode(json_decode($p['content']),ENT_COMPAT); + $content = ($p['content'] !== '' ? $rawContent : '"# New page\n"'); // Render the Markdown-formatted page content in HTML if($mimeType == 'text/bbcode') { @@ -245,7 +243,7 @@ class Wiki extends \Zotlabs\Web\Controller { } else { require_once('library/markdown.php'); - $html = Zlib\NativeWikiPage::generate_toc(zidify_text(purify_html(Markdown(Zlib\NativeWikiPage::bbcode(json_decode($content)))))); + $html = Zlib\NativeWikiPage::generate_toc(zidify_text(purify_html(Markdown(Zlib\NativeWikiPage::bbcode($content))))); $renderedContent = Zlib\NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName); } $showPageControls = $wiki_editor; |