aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2014-01-25 14:50:05 +0100
committermarijus <mario@localhost.localdomain>2014-01-25 14:50:05 +0100
commited00301bb641d716e43876572be640f8252b9b05 (patch)
tree6c17b55b161c688d515ab6dd3db1143c0382ae11 /include/conversation.php
parentf3fd9535a4468d026cc7f49cb1946ff0c69585c7 (diff)
downloadvolse-hubzilla-ed00301bb641d716e43876572be640f8252b9b05.tar.gz
volse-hubzilla-ed00301bb641d716e43876572be640f8252b9b05.tar.bz2
volse-hubzilla-ed00301bb641d716e43876572be640f8252b9b05.zip
disable feature setting for collections and make feature settings for personal and new tab working.
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/conversation.php b/include/conversation.php
index cec5993b6..b6ee08e1f 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1388,21 +1388,23 @@ function network_tabs() {
'sel'=>$postord_active,
'title' => t('Sort by Post Date'),
),
+ );
- array(
+ if(feature_enabled(local_user(),'personal_tab'))
+ $tabs[] = array(
'label' => t('Personal'),
'url' => $a->get_baseurl(true) . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&conv=1',
'sel' => $conv_active,
'title' => t('Posts that mention or involve you'),
- ),
- array(
+ );
+
+ if(feature_enabled(local_user(),'new_tab'))
+ $tabs[] = array(
'label' => t('New'),
'url' => $a->get_baseurl(true) . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&new=1' . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
'sel' => $new_active,
'title' => t('Activity Stream - by date'),
- ),
-
- );
+ );
if(feature_enabled(local_user(),'star_posts'))
$tabs[] = array(