Changeset 3698 for trunk/bp-themes/bp-default/activity/index.php
- Timestamp:
- 01/11/2011 05:41:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/activity/index.php
r3460 r3698 26 26 <?php do_action( 'bp_before_activity_type_tab_friends' ) ?> 27 27 28 <?php if ( function_exists( 'bp_get_total_friend_count' ) ) : ?>28 <?php if ( bp_is_active( 'friends' ) ) : ?> 29 29 <?php if ( bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?> 30 30 <li id="activity-friends"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' . BP_FRIENDS_SLUG . '/' ?>" title="<?php _e( 'The activity of my friends only.', 'buddypress' ) ?>"><?php printf( __( 'My Friends (%s)', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ) ?></a></li> … … 34 34 <?php do_action( 'bp_before_activity_type_tab_groups' ) ?> 35 35 36 <?php if ( function_exists( 'bp_get_total_group_count_for_user' ) ) : ?>36 <?php if ( bp_is_active( 'groups' ) ) : ?> 37 37 <?php if ( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) : ?> 38 38 <li id="activity-groups"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' . BP_GROUPS_SLUG . '/' ?>" title="<?php _e( 'The activity of groups I am a member of.', 'buddypress' ) ?>"><?php printf( __( 'My Groups (%s)', 'buddypress' ), bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) ?></a></li>
Note: See TracChangeset
for help on using the changeset viewer.