Ticket #3652: 3652.diff
| File 3652.diff, 963 bytes (added by , 7 months ago) |
|---|
-
template.php
3320 3320 $last_updated_by = bbp_get_author_link( array( 'post_id' => $last_active, 'size' => $r['size'] ) ); 3321 3321 $retstr = sprintf( esc_html__( 'This topic has %1$s, %2$s, and was last updated %3$s by %4$s.', 'bbpress' ), $reply_count, $voice_count, $time_since, $last_updated_by ); 3322 3322 3323 // Topic has no voices (likely created by an anonymous user) 3324 } elseif ( empty( $vc_int ) && ! empty( $last_active ) ) { 3325 $last_updated_by = bbp_get_author_link( array( 'post_id' => $last_active, 'size' => $r['size'] ) ); 3326 $retstr = sprintf( esc_html__( 'This topic was last updated %3$s by %4$s.', 'bbpress' ), $reply_count, $voice_count, $time_since, $last_updated_by ); 3327 3323 3328 // Topic has no replies 3324 3329 } elseif ( ! empty( $vc_int ) && ! empty( $reply_count ) ) { 3325 3330 $retstr = sprintf( esc_html__( 'This topic has %1$s and %2$s.', 'bbpress' ), $voice_count, $reply_count );