Respect respond_id. props filosofo. fixes #8011
git-svn-id: https://develop.svn.wordpress.org/trunk@9416 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
60e40dbc72
commit
147d207823
|
@ -929,7 +929,7 @@ function get_comment_reply_link($args = array(), $comment = null, $post = null)
|
||||||
if ( get_option('comment_registration') && !$user_ID )
|
if ( get_option('comment_registration') && !$user_ID )
|
||||||
$link = '<a rel="nofollow" href="' . site_url('wp-login.php?redirect_to=' . get_permalink()) . '">' . $login_text . '</a>';
|
$link = '<a rel="nofollow" href="' . site_url('wp-login.php?redirect_to=' . get_permalink()) . '">' . $login_text . '</a>';
|
||||||
else
|
else
|
||||||
$link = "<a rel='nofollow' href='" . wp_specialchars( add_query_arg( 'replytocom', $comment->comment_ID ) ) . "#respond' onclick='return addComment.moveForm(\"$add_below-$comment->comment_ID\", \"$comment->comment_ID\", \"$respond_id\")'>$reply_text</a>";
|
$link = "<a rel='nofollow' href='" . wp_specialchars( add_query_arg( 'replytocom', $comment->comment_ID ) ) . "#" . $respond_id . "' onclick='return addComment.moveForm(\"$add_below-$comment->comment_ID\", \"$comment->comment_ID\", \"$respond_id\")'>$reply_text</a>";
|
||||||
|
|
||||||
return apply_filters('comment_reply_link', $before . $link . $after, $args, $comment, $post);
|
return apply_filters('comment_reply_link', $before . $link . $after, $args, $comment, $post);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue