From 7908795548c00586bac747b45eefad0099eaed40 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 20 Apr 2009 17:46:46 +0000 Subject: [PATCH] Add some CYA clean_url()s git-svn-id: https://develop.svn.wordpress.org/trunk@11011 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index f53b75ce00..6b7f7fed15 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -993,9 +993,9 @@ function get_comment_reply_link($args = array(), $comment = null, $post = null) $link = ''; if ( get_option('comment_registration') && !$user_ID ) - $link = '' . $login_text . ''; + $link = '' . $login_text . ''; else - $link = "comment_ID ) ) . "#" . $respond_id . "' onclick='return addComment.moveForm(\"$add_below-$comment->comment_ID\", \"$comment->comment_ID\", \"$respond_id\", \"$post->ID\")'>$reply_text"; + $link = "comment_ID ) ) . "#" . $respond_id . "' onclick='return addComment.moveForm(\"$add_below-$comment->comment_ID\", \"$comment->comment_ID\", \"$respond_id\", \"$post->ID\")'>$reply_text"; return apply_filters('comment_reply_link', $before . $link . $after, $args, $comment, $post); }