Use correct variable. props linguasite, fixes #14141.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16030 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
16d0878544
commit
df7f5821db
|
@ -1048,7 +1048,7 @@ function edit_bookmark_link( $link = '', $before = '', $after = '', $bookmark =
|
|||
if ( empty($link) )
|
||||
$link = __('Edit This');
|
||||
|
||||
$link = '<a href="' . get_edit_bookmark_link( $link ) . '" title="' . __( 'Edit Link' ) . '">' . $link . '</a>';
|
||||
$link = '<a href="' . get_edit_bookmark_link( $bookmark ) . '" title="' . __( 'Edit Link' ) . '">' . $link . '</a>';
|
||||
echo $before . apply_filters( 'edit_bookmark_link', $link, $bookmark->link_id ) . $after;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue