Changeset 4321
- Timestamp:
- 04/30/2011 09:43:40 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-forums/bp-forums-loader.php
r4314 r4321 138 138 'parent_slug' => $this->slug, 139 139 'screen_function' => 'bp_member_forums_screen_topics', 140 'user_has_access' => bp_is_my_profile(),141 140 'position' => 20, 142 141 'item_css_id' => 'topics' … … 150 149 'parent_slug' => $this->slug, 151 150 'screen_function' => 'bp_member_forums_screen_replies', 152 'user_has_access' => bp_is_my_profile(),153 151 'position' => 40, 154 152 'item_css_id' => 'replies' … … 163 161 'parent_slug' => $this->slug, 164 162 'screen_function' => 'bp_member_forums_screen_favorites', 165 'user_has_access' => bp_is_my_profile(),166 163 'position' => 60, 167 164 'item_css_id' => 'favorites' -
trunk/bp-friends/bp-friends-loader.php
r4314 r4321 116 116 'parent_slug' => $bp->friends->slug, 117 117 'screen_function' => 'friends_screen_my_friends', 118 'user_has_access' => bp_is_my_profile(),119 118 'position' => 10, 120 119 'item_css_id' => 'friends-my-friends' -
trunk/bp-groups/bp-groups-loader.php
r4319 r4321 217 217 'parent_slug' => $this->slug, 218 218 'screen_function' => 'groups_screen_my_groups', 219 'user_has_access' => bp_is_my_profile(),220 219 'position' => 10, 221 220 'item_css_id' => 'groups-my-groups' -
trunk/bp-themes/bp-default/members/single/friends.php
r4314 r4321 12 12 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 13 13 <ul> 14 <?php bp_get_options_nav(); ?>14 <?php if ( bp_is_my_profile() ) bp_get_options_nav(); ?> 15 15 16 16 <?php if ( !bp_is_current_action( 'requests' ) ) : ?> -
trunk/bp-themes/bp-default/members/single/groups.php
r4314 r4321 12 12 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 13 13 <ul> 14 <?php bp_get_options_nav(); ?>14 <?php if ( bp_is_my_profile() ) bp_get_options_nav(); ?> 15 15 16 16 <?php if ( !bp_is_current_action( 'invites' ) ) : ?> -
trunk/bp-themes/bp-default/members/single/profile.php
r4314 r4321 10 10 ?> 11 11 12 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 13 <ul> 12 <?php if ( bp_is_my_profile() ) : ?> 14 13 15 <?php bp_get_options_nav(); ?> 14 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 15 <ul> 16 16 17 </ul> 18 </div><!-- .item-list-tabs --> 17 <?php bp_get_options_nav(); ?> 18 19 </ul> 20 </div><!-- .item-list-tabs --> 21 22 <?php endif; ?> 19 23 20 24 <?php do_action( 'bp_before_profile_content' ); ?> -
trunk/bp-xprofile/bp-xprofile-loader.php
r4314 r4321 134 134 'parent_slug' => $this->slug, 135 135 'screen_function' => 'xprofile_screen_display_profile', 136 'user_has_access' => bp_is_my_profile(),137 136 'position' => 10 138 137 ); … … 145 144 'parent_slug' => $this->slug, 146 145 'screen_function' => 'xprofile_screen_edit_profile', 147 'user_has_access' => bp_is_my_profile(),148 146 'position' => 20 149 147 ); … … 156 154 'parent_slug' => $this->slug, 157 155 'screen_function' => 'xprofile_screen_change_avatar', 158 'user_has_access' => bp_is_my_profile(),159 156 'position' => 30 160 157 );
Note: See TracChangeset
for help on using the changeset viewer.