Make WordPress Core

Ticket #25203: 25203.patch

File 25203.patch, 781 bytes (added by Frank Klein, 12 years ago)
  • wp-includes/comment-template.php

     
    14671467                                        <?php comment_text(); ?>
    14681468                                </div><!-- .comment-content -->
    14691469
    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 -->', ) ) ); ?>
    14731471                        </article><!-- .comment-body -->
    14741472<?php
    14751473        }