diff options
author | friendica <info@friendica.com> | 2012-02-13 20:42:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-13 20:42:10 -0800 |
commit | 4de67d95ce5ae6edd41767c8da5a54e0f1abd96e (patch) | |
tree | ed1cb22b7c1337ccc1d59eec930b76143cb9b0d1 | |
parent | d75b6a00d44c769991c0a7e40bd4a4021db340c6 (diff) | |
download | volse-hubzilla-4de67d95ce5ae6edd41767c8da5a54e0f1abd96e.tar.gz volse-hubzilla-4de67d95ce5ae6edd41767c8da5a54e0f1abd96e.tar.bz2 volse-hubzilla-4de67d95ce5ae6edd41767c8da5a54e0f1abd96e.zip |
proper tab selection when network or search is in effect
-rwxr-xr-x | mod/contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index c93b37bd8..d1136f542 100755 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -398,7 +398,7 @@ function contacts_content(&$a) { array( 'label' => t('Unblocked Contacts'), 'url' => $a->get_baseurl() . '/contacts', - 'sel' => ((! $all) && (! $blocked) && (! $hidden)) ? 'active' : '', + 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets)) ? 'active' : '', ), array( |