[4432] missed "comment => c" conversion in edit_comment_link(). Props tinyau. fixes #3309

git-svn-id: https://develop.svn.wordpress.org/trunk@4436 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2006-10-31 06:13:43 +00:00
parent 3567fff3db
commit d2865e988f
1 changed files with 1 additions and 1 deletions

View File

@ -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 . "<a href='$location'>$link</a>" . $after;
}