Changeset 5071 for trunk/bp-core/bp-core-template.php
- Timestamp:
- 08/31/2011 12:35:51 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-template.php
r5066 r5071 1105 1105 global $bp; 1106 1106 1107 if ( bp_is_current_component( 'activity' ) && bp_is_current_action( bp_get_friends_slug() ) ) 1107 if ( !bp_is_active( 'friends' ) ) 1108 return false; 1109 1110 if ( bp_is_activity_component() && bp_is_current_action( bp_get_friends_slug() ) ) 1108 1111 return true; 1109 1112 … … 1114 1117 global $bp; 1115 1118 1116 if ( bp_is_current_component( 'activity' ) && bp_is_current_action( bp_get_groups_slug() ) ) 1119 if ( !bp_is_active( 'groups' ) ) 1120 return false; 1121 1122 if ( bp_is_activity_component() && bp_is_current_action( bp_get_groups_slug() ) ) 1117 1123 return true; 1118 1124 … … 1123 1129 global $bp; 1124 1130 1125 if ( bp_is_ current_component( 'xprofile') || bp_is_current_component( 'profile' ) )1131 if ( bp_is_profile_component() || bp_is_current_component( 'profile' ) ) 1126 1132 return true; 1127 1133 … … 1132 1138 global $bp; 1133 1139 1134 if ( bp_is_ current_component( 'xprofile') && bp_is_current_action( 'edit' ) )1140 if ( bp_is_profile_component() && bp_is_current_action( 'edit' ) ) 1135 1141 return true; 1136 1142
Note: See TracChangeset
for help on using the changeset viewer.