diff options
author | zotlabs <mike@macgirvin.com> | 2018-08-15 17:00:37 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-08-15 17:00:37 -0700 |
commit | f230c07ba5ed71c0491c6fd109c0789d2cc341c1 (patch) | |
tree | b9e393321058b10da1a44674016026f03ca9dc76 /Zotlabs | |
parent | f4f610f1a3b3826f960e3db2026bf2204e939fe8 (diff) | |
download | volse-hubzilla-f230c07ba5ed71c0491c6fd109c0789d2cc341c1.tar.gz volse-hubzilla-f230c07ba5ed71c0491c6fd109c0789d2cc341c1.tar.bz2 volse-hubzilla-f230c07ba5ed71c0491c6fd109c0789d2cc341c1.zip |
possible fixes for can_comment_on_post(), provide wiki_list on wiki sidebar
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadStream.php | 1 | ||||
-rw-r--r-- | Zotlabs/Widget/Wiki_list.php | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Zotlabs/Lib/ThreadStream.php b/Zotlabs/Lib/ThreadStream.php index d0c964149..020e8729b 100644 --- a/Zotlabs/Lib/ThreadStream.php +++ b/Zotlabs/Lib/ThreadStream.php @@ -196,7 +196,6 @@ class ThreadStream { $item->set_commentable(false); } - require_once('include/channel.php'); $item->set_conversation($this); $this->threads[] = $item; diff --git a/Zotlabs/Widget/Wiki_list.php b/Zotlabs/Widget/Wiki_list.php index 62f32dbf0..c8d83cbe8 100644 --- a/Zotlabs/Widget/Wiki_list.php +++ b/Zotlabs/Widget/Wiki_list.php @@ -6,13 +6,17 @@ class Wiki_list { function widget($arr) { + if(argc() < 3) { + return; + } + $channel = channelx_by_n(\App::$profile_uid); $wikis = \Zotlabs\Lib\NativeWiki::listwikis($channel,get_observer_hash()); if($wikis) { return replace_macros(get_markup_template('wikilist_widget.tpl'), array( - '$header' => t('Wiki List'), + '$header' => t('Wikis'), '$channel' => $channel['channel_address'], '$wikis' => $wikis['wikis'] )); |