From 358a5e681a1060eaa643785af6f3b9550b4fd8ba Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 24 Jan 2009 09:35:12 +0000 Subject: [PATCH] Add classes to "edit_comment_link" and "edit_post_link", props yoavf, fixes #8945 for trunk git-svn-id: https://develop.svn.wordpress.org/trunk@10426 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/link-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index b7b9fc0f89..47ef1a7cdd 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -725,7 +725,7 @@ function edit_post_link( $link = 'Edit This', $before = '', $after = '' ) { return; } - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_post_link', $link, $post->ID ) . $after; } @@ -775,7 +775,7 @@ function edit_comment_link( $link = 'Edit This', $before = '', $after = '' ) { return; } - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID ) . $after; }