diff --git a/boot.php b/boot.php index d36512295..f4b43e4c9 100644 --- a/boot.php +++ b/boot.php @@ -2946,6 +2946,11 @@ function get_plugin_info($plugin){ return $info; }} +if(! function_exists('set_nav_selected')){ +function set_nav_selected($id){ + return ''; +}} + if(! function_exists('return_bytes')) { function return_bytes ($size_str) { switch (substr ($size_str, -1)) @@ -2968,4 +2973,4 @@ function generate_guid() { $found = false; } while ($found == true ); return $guid; -} \ No newline at end of file +} diff --git a/include/nav.php b/include/nav.php index 895c321e6..caed9453a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -41,7 +41,7 @@ function nav(&$a) { $nav['logout'] = Array('logout',t('Logout'), "", t('End this session')); } else { - $nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'nav-selected':''), t('Sign in')); + $nav['login'] = Array('login',t('Login'), ($a->module == 'login'?'selected':''), t('Sign in')); } diff --git a/mod/community.php b/mod/community.php index cf43598b5..f8bd88d86 100644 --- a/mod/community.php +++ b/mod/community.php @@ -25,7 +25,7 @@ function community_content(&$a, $update = 0) { $o .= '

' . t('Community') . '

'; if(! $update) { - $o .= ''; + $o .= set_nav_selected('nav-community-link'); $o .= '
' . "\r\n"; $o .= "\r\n"; } diff --git a/mod/contacts.php b/mod/contacts.php index 2fc01a0d8..1fa07688c 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -112,7 +112,7 @@ function contacts_content(&$a) { $sort_type = 0; $o = ''; - $o .= ''; + $o .= set_nav_selected('nav-contacts-link'); $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; diff --git a/mod/directory.php b/mod/directory.php index 0c60f04bf..03b6ab4d1 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -22,7 +22,7 @@ function directory_content(&$a) { } $o = ''; - $o .= ''; + $o .= set_nav_selected('nav-directory-link'); if(x($_SESSION,'theme')) unset($_SESSION['theme']); diff --git a/mod/message.php b/mod/message.php index ad598eb7d..ff3db06e2 100644 --- a/mod/message.php +++ b/mod/message.php @@ -110,7 +110,7 @@ function message_post(&$a) { function message_content(&$a) { $o = ''; - $o .= ''; + $o .= set_nav_selected('nav-messages-link'); if(! local_user()) { notice( t('Permission denied.') . EOL); diff --git a/mod/network.php b/mod/network.php index 7bdd3f3f1..8d377fa0e 100644 --- a/mod/network.php +++ b/mod/network.php @@ -98,7 +98,7 @@ function network_content(&$a, $update = 0) { } } - $o .= ''; + $o .= set_nav_selected('nav-network-link'); $_SESSION['return_url'] = $a->cmd; diff --git a/mod/notifications.php b/mod/notifications.php index c6f073058..6f9ece184 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -64,7 +64,7 @@ function notifications_content(&$a) { } $o = ''; - $o .= ''; + $o .= set_nav_selected("nav-notifications-link"); if(($a->argc > 1) && ($a->argv[1] == 'all')) $sql_extra = ''; diff --git a/mod/profile.php b/mod/profile.php index f4b6bfaf1..7e47c91bb 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -70,7 +70,7 @@ function profile_content(&$a, $update = 0) { } else { if($a->profile['profile_uid'] == local_user()) - $o .= ''; + $o .= set_nav_selected('nav-home-link'); } $contact = null; diff --git a/mod/profiles.php b/mod/profiles.php index 160ca13bc..7041249e2 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -220,7 +220,7 @@ function profiles_post(&$a) { function profiles_content(&$a) { $o = ''; - $o .= ''; + $o .= set_nav_selected('nav-profiles-link'); if(! local_user()) { notice( t('Permission denied.') . EOL); diff --git a/mod/settings.php b/mod/settings.php index 1b4098de8..0223b1b9c 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -299,7 +299,7 @@ if(! function_exists('settings_content')) { function settings_content(&$a) { $o = ''; - $o .= ''; + $o .= set_nav_selected('nav-settings-link'); if(! local_user()) { notice( t('Permission denied.') . EOL );