Ticket #16430: 16430.1.patch
| File 16430.1.patch, 3.2 KB (added by , 13 years ago) |
|---|
-
wp-includes/comment-template.php
1367 1367 1368 1368 <?php comment_text() ?> 1369 1369 1370 <div class="reply"> 1371 <?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?> 1372 </div> 1370 <?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div>'))) ?> 1373 1371 <?php if ( 'div' != $args['style'] ) : ?> 1374 1372 </div> 1375 1373 <?php endif; ?> -
wp-content/themes/twentyten/functions.php
351 351 352 352 <div class="comment-body"><?php comment_text(); ?></div> 353 353 354 <div class="reply"> 355 <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 356 </div><!-- .reply --> 354 <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div><!-- .reply -->' ) ) ); ?> 357 355 </div><!-- #comment-## --> 358 356 359 357 <?php -
wp-content/themes/twentytwelve/functions.php
309 309 <?php edit_comment_link( __( 'Edit', 'twentytwelve' ), '<p class="edit-link">', '</p>' ); ?> 310 310 </section><!-- .comment-content --> 311 311 312 <div class="reply"> 313 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 314 </div><!-- .reply --> 312 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div><!-- .reply -->' ) ) ); ?> 315 313 </article><!-- #comment-## --> 316 314 <?php 317 315 break; -
wp-content/themes/twentyeleven/functions.php
562 562 563 563 <div class="comment-content"><?php comment_text(); ?></div> 564 564 565 <div class="reply"> 566 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>↓</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 567 </div><!-- .reply --> 565 <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>↓</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div><!-- .reply -->' ) ) ); ?> 568 566 </article><!-- #comment-## --> 569 567 570 568 <?php