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