- Timestamp:
- 04/27/2021 06:59:23 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/activity/functions.php
r12814 r12908 4 4 * 5 5 * @since 3.0.0 6 * @version 7.0.06 * @version 8.0.0 7 7 */ 8 8 … … 227 227 'slug' => 'favorites', // slug is used because BP_Core_Nav requires it, but it's the scope 228 228 'li_class' => array(), 229 'link' => bp_loggedin_user_domain() . bp_ get_activity_slug() . '/favorites/',229 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/favorites/', 230 230 'text' => __( 'My Favorites', 'buddypress' ), 231 231 'count' => false, … … 240 240 'slug' => 'friends', // slug is used because BP_Core_Nav requires it, but it's the scope 241 241 'li_class' => array( 'dynamic' ), 242 'link' => bp_loggedin_user_domain() . bp_ get_activity_slug() . '/' . bp_get_friends_slug() . '/',242 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/' . bp_nouveau_get_component_slug( 'friends' ) . '/', 243 243 'text' => __( 'My Friends', 'buddypress' ), 244 244 'count' => '', … … 253 253 'slug' => 'groups', // slug is used because BP_Core_Nav requires it, but it's the scope 254 254 'li_class' => array( 'dynamic' ), 255 'link' => bp_loggedin_user_domain() . bp_ get_activity_slug() . '/' . bp_get_groups_slug() . '/',255 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/' . bp_nouveau_get_component_slug( 'groups' ) . '/', 256 256 'text' => __( 'My Groups', 'buddypress' ), 257 257 'count' => '', … … 273 273 'slug' => 'mentions', // slug is used because BP_Core_Nav requires it, but it's the scope 274 274 'li_class' => array( 'dynamic' ), 275 'link' => bp_loggedin_user_domain() . bp_ get_activity_slug() . '/mentions/',275 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/mentions/', 276 276 'text' => __( 'Mentions', 'buddypress' ), 277 277 'count' => $count,
Note: See TracChangeset
for help on using the changeset viewer.