diff options
author | friendica <info@friendica.com> | 2012-10-22 19:57:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-22 19:57:55 -0700 |
commit | 88be2eaaae55c79111d5e209eb823e6fd1e64f9c (patch) | |
tree | f151f2b60253cdbcb5c2adfbd852119168f25f47 /mod/network.php | |
parent | 21578fd0b0003c5e5304ef786c6975c204d42b7b (diff) | |
download | volse-hubzilla-88be2eaaae55c79111d5e209eb823e6fd1e64f9c.tar.gz volse-hubzilla-88be2eaaae55c79111d5e209eb823e6fd1e64f9c.tar.bz2 volse-hubzilla-88be2eaaae55c79111d5e209eb823e6fd1e64f9c.zip |
don't need 'bookmark' - keep it simple
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php index b5c568b78..b431c67a1 100644 --- a/mod/network.php +++ b/mod/network.php @@ -187,7 +187,6 @@ function network_query_get_sel_tab($a) { $no_active=''; $starred_active = ''; $new_active = ''; - $bookmarked_active = ''; $all_active = ''; $search_active = ''; $conv_active = ''; @@ -275,7 +274,7 @@ function network_content(&$a, $update = 0, $load = false) { // TODO: fix this logic, reduce duplication //$a->page['content'] .= '<div class="tabs-wrapper">'; - list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) = network_query_get_sel_tab($a); + list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $spam_active) = network_query_get_sel_tab($a); // if no tabs are selected, defaults to comments if ($no_active=='active') $all_active='active'; //echo "<pre>"; var_dump($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active); killme(); |