Changeset 5417 for trunk/bp-groups/bp-groups-activity.php
- Timestamp:
- 11/29/2011 11:06:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-activity.php
r5302 r5417 130 130 $text = sprintf( __( '%d accepted group membership requests', 'buddypress' ), (int)$total_items, $group->name ); 131 131 $filter = 'bp_groups_multiple_membership_request_accepted_notification'; 132 $notification_link = bp_loggedin_user_domain() . bp_get_groups_slug() . '/?n=1';132 $notification_link = trailingslashit( bp_loggedin_user_domain() . bp_get_groups_slug() ) . '?n=1'; 133 133 134 134 if ( 'string' == $format ) { … … 166 166 $text = sprintf( __( '%d rejected group membership requests', 'buddypress' ), (int)$total_items, $group->name ); 167 167 $filter = 'bp_groups_multiple_membership_request_rejected_notification'; 168 $notification_link = bp_loggedin_user_domain() . bp_get_groups_slug() . '/?n=1';168 $notification_link = trailingslashit( bp_loggedin_user_domain() . bp_get_groups_slug() ) . '?n=1'; 169 169 170 170 if ( 'string' == $format ) { … … 202 202 $text = sprintf( __( 'You were promoted to an admin in %d groups', 'buddypress' ), (int)$total_items ); 203 203 $filter = 'bp_groups_multiple_member_promoted_to_admin_notification'; 204 $notification_link = bp_loggedin_user_domain() . bp_get_groups_slug() . '?n=1';204 $notification_link = trailingslashit( bp_loggedin_user_domain() . bp_get_groups_slug() ) . '?n=1'; 205 205 206 206 if ( 'string' == $format ) { … … 238 238 $text = sprintf( __( 'You were promoted to a mod in %d groups', 'buddypress' ), (int)$total_items ); 239 239 $filter = 'bp_groups_multiple_member_promoted_to_mod_notification'; 240 $notification_link = bp_loggedin_user_domain() . bp_get_groups_slug() . '?n=1';240 $notification_link = trailingslashit( bp_loggedin_user_domain() . bp_get_groups_slug() ) . '?n=1'; 241 241 242 242 if ( 'string' == $format ) {
Note: See TracChangeset
for help on using the changeset viewer.