- Timestamp:
- 08/23/2021 02:03:02 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-notifications/classes/class-bp-notifications-component.php
r12670 r13091 29 29 buddypress()->plugin_dir, 30 30 array( 31 'adminbar_myaccount_order' => 30 31 'adminbar_myaccount_order' => 30, 32 32 ) 33 33 ); … … 122 122 'search_string' => __( 'Search Notifications...', 'buddypress' ), 123 123 'global_tables' => $global_tables, 124 'meta_tables' => $meta_tables 124 'meta_tables' => $meta_tables, 125 125 ); 126 126 … … 250 250 'id' => 'my-account-' . $this->id, 251 251 'title' => $title, 252 'href' => $notifications_link 252 'href' => $notifications_link, 253 253 ); 254 254 … … 259 259 'title' => $unread, 260 260 'href' => $notifications_link, 261 'position' => 10 261 'position' => 10, 262 262 ); 263 263 … … 268 268 'title' => _x( 'Read', 'My Account Notification sub nav', 'buddypress' ), 269 269 'href' => trailingslashit( $notifications_link . 'read' ), 270 'position' => 20 270 'position' => 20, 271 271 ); 272 272 } … … 289 289 $bp->bp_options_title = __( 'Notifications', 'buddypress' ); 290 290 } else { 291 $bp->bp_options_title = bp_get_displayed_user_fullname(); 291 292 $bp->bp_options_avatar = bp_core_fetch_avatar( array( 292 293 'item_id' => bp_displayed_user_id(), … … 294 295 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_get_displayed_user_fullname() ) 295 296 ) ); 296 $bp->bp_options_title = bp_get_displayed_user_fullname();297 297 } 298 298 }
Note: See TracChangeset
for help on using the changeset viewer.