aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2014-01-26 14:44:55 +0100
committermarijus <mario@localhost.localdomain>2014-01-26 14:44:55 +0100
commit4ce6335364a5c86cac97bcc43af0dc6bfa38d114 (patch)
treeb05c52358360563cbc4945c42461d73bd0de3f3b /include/conversation.php
parent44658f7b7f03979c3809b046d911ff24484a05c9 (diff)
downloadvolse-hubzilla-4ce6335364a5c86cac97bcc43af0dc6bfa38d114.tar.gz
volse-hubzilla-4ce6335364a5c86cac97bcc43af0dc6bfa38d114.tar.bz2
volse-hubzilla-4ce6335364a5c86cac97bcc43af0dc6bfa38d114.zip
Revert "disable feature setting for collections and make feature settings for personal and new tab working."
This reverts commit ed00301bb641d716e43876572be640f8252b9b05.
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php14
1 files changed, 6 insertions, 8 deletions
diff --git a/include/conversation.php b/include/conversation.php
index b6ee08e1f..cec5993b6 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1388,23 +1388,21 @@ function network_tabs() {
'sel'=>$postord_active,
'title' => t('Sort by Post Date'),
),
- );
- if(feature_enabled(local_user(),'personal_tab'))
- $tabs[] = array(
+ 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'),
- );
-
- if(feature_enabled(local_user(),'new_tab'))
- $tabs[] = array(
+ ),
+ 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(