Make WordPress Core

Ticket #29454: 29454.patch

File 29454.patch, 632 bytes (added by joedolson, 10 years ago)

Use get_comments_link() instead of get_permalink/comments_link

  • wp-includes/comment-template.php

     
    12491249                echo $home . '/' . $wpcommentspopupfile . '?comments_popup=' . $id;
    12501250                echo '" onclick="wpopen(this.href); return false"';
    12511251        } else { // if comments_popup_script() is not in the template, display simple comment link
    1252                 if ( 0 == $number )
    1253                         echo get_permalink() . '#respond';
    1254                 else
    1255                         comments_link();
    1256                 echo '"';
     1252                echo get_comments_link();
    12571253        }
    12581254
    12591255        if ( !empty( $css_class ) ) {