From 21586ee6b6a66f5edee52b4b34c04829929ee601 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Tue, 31 Oct 2006 06:13:43 +0000 Subject: [PATCH] [4432] missed "comment => c" conversion in edit_comment_link(). Props tinyau. fixes #3309 git-svn-id: http://svn.automattic.com/wordpress/trunk@4436 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 3526f5cb9..c4002bdee 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -244,7 +244,7 @@ function edit_comment_link($link = 'Edit This', $before = '', $after = '') { return; } - $location = get_option('siteurl') . "/wp-admin/comment.php?action=editcomment&comment=$comment->comment_ID"; + $location = get_option('siteurl') . "/wp-admin/comment.php?action=editcomment&c=$comment->comment_ID"; echo $before . "$link" . $after; }