From 1741eb34e00ccc711d8ac51c5c2a7e36a941ae7b Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Tue, 5 May 2009 02:23:40 +0000 Subject: [PATCH] Add a space between image and name in bookmark-template.php, props sivel, fixes #8608 git-svn-id: https://develop.svn.wordpress.org/trunk@11184 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/bookmark-template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/bookmark-template.php b/wp-includes/bookmark-template.php index b00476eccd..fac3fb2018 100644 --- a/wp-includes/bookmark-template.php +++ b/wp-includes/bookmark-template.php @@ -106,7 +106,8 @@ function _walk_bookmarks($bookmarks, $args = '' ) { else // If it's a relative path $output .= "link_image\" $alt $title />"; - if ($show_name) $output .= $name; + if ( $show_name ) + $output .= " $name"; } else { $output .= $name; }