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/Widget | |
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/Widget')
-rw-r--r-- | Zotlabs/Widget/Wiki_list.php | 6 |
1 files changed, 5 insertions, 1 deletions
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'] )); |