From 2c833277b2e176d9be858466ff0da66f1a65f8c6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 28 Oct 2010 05:58:49 +0000 Subject: [PATCH] Use correct variable. props linguasite, fixes #14141. git-svn-id: https://develop.svn.wordpress.org/trunk@16030 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 a407fee3e7..2748ea01dc 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1048,7 +1048,7 @@ function edit_bookmark_link( $link = '', $before = '', $after = '', $bookmark = if ( empty($link) ) $link = __('Edit This'); - $link = '' . $link . ''; + $link = '' . $link . ''; echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after; }