Ticket #25203: 25203.patch
File 25203.patch, 781 bytes (added by , 12 years ago) |
---|
-
wp-includes/comment-template.php
1467 1467 <?php comment_text(); ?> 1468 1468 </div><!-- .comment-content --> 1469 1469 1470 <div class="reply"> 1471 <?php comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 1472 </div><!-- .reply --> 1470 <?php comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div><!-- .reply -->', ) ) ); ?> 1473 1471 </article><!-- .comment-body --> 1474 1472 <?php 1475 1473 }