Make WordPress Core

Changeset 29908


Ignore:
Timestamp:
10/15/2014 09:55:31 PM (10 years ago)
Author:
ocean90
Message:

Comments: Don't print an empty HTML markup when comment_reply_link() returns no link.

props obenland.
fixes #29895.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment-template.php

    r29846 r29908  
    18401840        <?php comment_text( get_comment_id(), array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    18411841
    1842         <div class="reply">
    1843             <?php comment_reply_link( array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    1844         </div>
     1842        <?php
     1843        comment_reply_link( array_merge( $args, array(
     1844            'add_below' => $add_below,
     1845            'depth'     => $depth,
     1846            'max_depth' => $args['max_depth'],
     1847            'before'    => '<div class="reply">',
     1848            'after'     => '</div>'
     1849        ) ) );
     1850        ?>
     1851
    18451852        <?php if ( 'div' != $args['style'] ) : ?>
    18461853        </div>
     
    18901897                </div><!-- .comment-content -->
    18911898
    1892                 <div class="reply">
    1893                     <?php comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    1894                 </div><!-- .reply -->
     1899                <?php
     1900                comment_reply_link( array_merge( $args, array(
     1901                    'add_below' => 'div-comment',
     1902                    'depth'     => $depth,
     1903                    'max_depth' => $args['max_depth'],
     1904                    'before'    => '<div class="reply">',
     1905                    'after'     => '</div>'
     1906                ) ) );
     1907                ?>
    18951908            </article><!-- .comment-body -->
    18961909<?php
Note: See TracChangeset for help on using the changeset viewer.