Changeset 49193 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 10/18/2020 05:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r49108 r49193 433 433 function comment_class( $class = '', $comment = null, $post_id = null, $echo = true ) { 434 434 // Separates classes with a single space, collates classes for comment DIV. 435 $class = 'class="' . join( ' ', get_comment_class( $class, $comment, $post_id ) ) . '"';435 $class = 'class="' . implode( ' ', get_comment_class( $class, $comment, $post_id ) ) . '"'; 436 436 437 437 if ( $echo ) {
Note: See TracChangeset
for help on using the changeset viewer.