aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Wiki.php
diff options
context:
space:
mode:
authorHubzilla <hubzilla@hz.macgirvin.com>2017-01-18 18:18:37 -0800
committerHubzilla <hubzilla@hz.macgirvin.com>2017-01-18 18:18:37 -0800
commitd4e58e94f6777f0a7ab5733d889f29bdb9366b14 (patch)
treefd199554fac5c1afad8e1257534fed9fddb6526d /Zotlabs/Module/Wiki.php
parent6e504b7bc992bebabedfc22f4e9b80dd29761800 (diff)
downloadvolse-hubzilla-d4e58e94f6777f0a7ab5733d889f29bdb9366b14.tar.gz
volse-hubzilla-d4e58e94f6777f0a7ab5733d889f29bdb9366b14.tar.bz2
volse-hubzilla-d4e58e94f6777f0a7ab5733d889f29bdb9366b14.zip
native wiki updates
Diffstat (limited to 'Zotlabs/Module/Wiki.php')
-rw-r--r--Zotlabs/Module/Wiki.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php
index 60a1fb665..9adcc91b0 100644
--- a/Zotlabs/Module/Wiki.php
+++ b/Zotlabs/Module/Wiki.php
@@ -39,7 +39,6 @@ class Wiki extends \Zotlabs\Web\Controller {
return;
}
- require_once('include/wiki.php');
require_once('include/acl_selectors.php');
require_once('include/conversation.php');
require_once('include/bbcode.php');
@@ -239,8 +238,8 @@ class Wiki extends \Zotlabs\Web\Controller {
}
else {
require_once('library/markdown.php');
- $html = wiki_generate_toc(zidify_text(purify_html(Markdown(wiki_bbcode(json_decode($content))))));
- $renderedContent = wiki_convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName);
+ $html = Zlib\NativeWikiPage::generate_toc(zidify_text(purify_html(Markdown(Zlib\NativeWikiPage::bbcode(json_decode($content))))));
+ $renderedContent = Zlib\NativeWikiPage::convert_links($html, argv(0) . '/' . argv(1) . '/' . $wikiUrlName);
}
$showPageControls = $wiki_editor;
break;
@@ -296,7 +295,7 @@ class Wiki extends \Zotlabs\Web\Controller {
}
function post() {
- require_once('include/wiki.php');
+
require_once('include/bbcode.php');
$nick = argv(1);