Show
Ignore:
Timestamp:
06/19/08 17:10:30 (7 months ago)
Author:
apeatling
Message:

Fixed issues with subdirectory WPMU installations and BuddyPress

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-templatetags.php

    r166 r167  
    22 
    33function bp_get_nav() { 
    4         global $bp_nav, $current_component; 
     4        global $bp_nav, $current_component, $current_userid, $loggedin_userid; 
    55         
    66        for ( $i = 0; $i < count($bp_nav); $i++ ) { 
    7                 if ( $current_component == $bp_nav[$i]['id'] ) { 
     7                if ( $current_component == $bp_nav[$i]['id'] && $current_userid == $loggedin_userid ) { 
    88                        $selected = ' class="current"'; 
    99                } else {