possible fixes for can_comment_on_post(), provide wiki_list on wiki sidebar

This commit is contained in:
zotlabs
2018-08-15 17:00:37 -07:00
parent f4f610f1a3
commit f230c07ba5
4 changed files with 33 additions and 15 deletions

View File

@@ -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']
));