diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-06 14:29:36 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-06 14:29:36 -0800 |
commit | e5653945d35e00ae1821fa93e502cc4555519735 (patch) | |
tree | 05c1a273a378ccf02bc19cfb32c8f5be7391abff /Zotlabs/Lib/NativeWikiPage.php | |
parent | 0a55d6d51143acbf1084104d1626c7a4b88e6c15 (diff) | |
parent | a604236d89a843a10af1a87f5e9a5cdac153b3ab (diff) | |
download | volse-hubzilla-e5653945d35e00ae1821fa93e502cc4555519735.tar.gz volse-hubzilla-e5653945d35e00ae1821fa93e502cc4555519735.tar.bz2 volse-hubzilla-e5653945d35e00ae1821fa93e502cc4555519735.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Lib/NativeWikiPage.php')
-rw-r--r-- | Zotlabs/Lib/NativeWikiPage.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Lib/NativeWikiPage.php b/Zotlabs/Lib/NativeWikiPage.php index 209a5ef3c..919c51276 100644 --- a/Zotlabs/Lib/NativeWikiPage.php +++ b/Zotlabs/Lib/NativeWikiPage.php @@ -68,6 +68,9 @@ class NativeWikiPage { return array('content' => null, 'message' => 'Error reading wiki', 'success' => false); } + // backslashes won't work well in the javascript functions + $name = str_replace('\\','',$name); + // create an empty activity $arr = []; @@ -351,6 +354,7 @@ class NativeWikiPage { // fetch the most recently saved revision. $item = self::load_page($arr); + if(! $item) { return array('message' => t('Page not found'), 'success' => false); } |