Make WordPress Core

Ticket #10948: 10948-test-2013.diff

File 10948-test-2013.diff, 542 bytes (added by MikeLittle, 11 years ago)

Simple test: make 2013 echo wp_list_comments() after adding echo => false. Output is xactly the same as without the patch.

  • wp-content/themes/twentythirteen/comments.php

     
    2929
    3030                <ol class="comment-list">
    3131                        <?php
    32                                 wp_list_comments( array(
     32                                echo wp_list_comments( array(
    3333                                        'style'       => 'ol',
    3434                                        'short_ping'  => true,
    3535                                        'avatar_size' => 74,
     36                                        'echo'        => false,
    3637                                ) );
    3738                        ?>
    3839                </ol><!-- .comment-list -->