| 326 | | return apply_filters( 'bp_get_message_thread_avatar', bp_core_fetch_avatar( array( 'item_id' => $messages_template->thread->last_sender_id, 'type' => 'thumb', 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_core_get_user_displayname( $messages_template->thread->last_sender_id ) ) ) ) ); |
| | 328 | $defaults = array( |
| | 329 | 'type' => 'thumb', |
| | 330 | 'width' => false, |
| | 331 | 'height' => false, |
| | 332 | 'class' => 'avatar', |
| | 333 | 'id' => false, |
| | 334 | 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), $fullname ) |
| | 335 | ); |
| | 336 | |
| | 337 | $r = wp_parse_args( $args, $defaults ); |
| | 338 | extract( $r, EXTR_SKIP ); |
| | 339 | |
| | 340 | return apply_filters( 'bp_get_message_thread_avatar', bp_core_fetch_avatar( array( 'item_id' => $messages_template->thread->last_sender_id, 'type' => $type, 'alt' => $alt, 'css_id' => $id, 'class' => $class, 'width' => $width, 'height' => $height ) ) ); |