diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-08-16 08:50:52 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-08-16 08:50:52 +0200 |
commit | e25db4d1b57116353ad4e4909eb93824a673ffb3 (patch) | |
tree | 8ad9f1cb5f1934ab7593fb8bb291c6d398153a1f /Zotlabs/Widget | |
parent | 2becc3273aa377574d566c052036f425105b2389 (diff) | |
parent | 32acb0ff01b8fde3801fafbd7953aa36b5933f96 (diff) | |
download | volse-hubzilla-e25db4d1b57116353ad4e4909eb93824a673ffb3.tar.gz volse-hubzilla-e25db4d1b57116353ad4e4909eb93824a673ffb3.tar.bz2 volse-hubzilla-e25db4d1b57116353ad4e4909eb93824a673ffb3.zip |
Merge remote-tracking branch 'mike/master' into dev
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'] )); |