From 76dc2686b5f27d04a1d76dba181e9f8a2016ae01 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 10 Dec 2008 21:08:20 +0000 Subject: [PATCH] Change default add_below. see #8550 git-svn-id: https://develop.svn.wordpress.org/trunk@10179 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index b8ef9ffda1..6a8ee223f7 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1024,7 +1024,7 @@ function comment_reply_link($args = array(), $comment = null, $post = null) { function get_post_reply_link($args = array(), $post = null) { global $user_ID; - $defaults = array('add_below' => 'comment', 'respond_id' => 'respond', 'reply_text' => __('Leave a Comment'), + $defaults = array('add_below' => 'post', 'respond_id' => 'respond', 'reply_text' => __('Leave a Comment'), 'login_text' => __('Log in to leave a Comment'), 'before' => '', 'after' => ''); $args = wp_parse_args($args, $defaults);