forumlist: use a more unique identifier

This commit is contained in:
rabuzarus 2015-11-11 01:29:31 +01:00
parent a67710bc7c
commit dac6f39f41
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ function get_features() {
'widgets' => array( 'widgets' => array(
t('Network Sidebar Widgets'), t('Network Sidebar Widgets'),
array('archives', t('Search by Date'), t('Ability to select posts by date ranges')), array('archives', t('Search by Date'), t('Ability to select posts by date ranges')),
array('forumlist', t('List Forums'), t('Enable widget to display the forums your are connected with')), array('forumlist_widget', t('List Forums'), t('Enable widget to display the forums your are connected with')),
array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group')), array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group')),
array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network')), array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network')),
array('savedsearch', t('Saved Searches'), t('Save search terms for re-use')), array('savedsearch', t('Saved Searches'), t('Save search terms for re-use')),

View File

@ -64,7 +64,7 @@ function get_forumlist($uid, $showhidden = true, $lastitem, $showprivate = false
*/ */
function widget_forumlist($a) { function widget_forumlist($a) {
if(! intval(feature_enabled(local_user(),'forumlist'))) if(! intval(feature_enabled(local_user(),'forumlist_widget')))
return; return;
$o = ''; $o = '';

View File

@ -146,7 +146,7 @@ function network_init(&$a) {
} }
$a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : ''); $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : '');
$a->page['aside'] .= (feature_enabled(local_user(),'forumlist') ? widget_forumlist($a) : ''); $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : '');
$a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false); $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
$a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : '')); $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
$a->page['aside'] .= saved_searches($search); $a->page['aside'] .= saved_searches($search);