add link to channel source management in settings if channel_sources feature is enabled

This commit is contained in:
friendica 2013-09-30 22:01:11 -07:00
parent dffce63662
commit a6c542289a

View File

@ -113,6 +113,15 @@ function settings_aside(&$a) {
}
if(feature_enabled(local_user(),'channel_sources')) {
$tabs[] = array(
'label' => t('Channel Sources'),
'url' => $a->get_baseurl(true) . '/sources',
'selected' => ''
);
}
$tabtpl = get_markup_template("generic_links_widget.tpl");