Changeset 2277 for trunk/bp-activity/bp-activity-templatetags.php
- Timestamp:
- 01/09/2010 09:58:51 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-activity/bp-activity-templatetags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-templatetags.php
r2276 r2277 53 53 'total' => ceil( (int)$this->total_activity_count / (int)$this->pag_num ), 54 54 'current' => (int)$this->pag_page, 55 'prev_text' => '&la quo;',56 'next_text' => '&ra quo;',55 'prev_text' => '←', 56 'next_text' => '→', 57 57 'mid_size' => 1 58 58 )); … … 447 447 $content .= '<li id="acomment-' . $comment->id . '">'; 448 448 $content .= '<div class="acomment-avatar">' . bp_core_fetch_avatar( array( 'item_id' => $comment->user_id, 'width' => 25, 'height' => 25, 'email' => $comment->user_email ) ) . '</div>'; 449 $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . esc_attr($comment->user_fullname ) . '</a> · ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) );449 $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . apply_filters( 'bp_get_member_name', $comment->user_fullname ) . '</a> · ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) ); 450 450 451 451 /* Reply link */
Note: See TracChangeset
for help on using the changeset viewer.