From 154896f99d69f4d8e06124ac801f0abf3e6750a4 Mon Sep 17 00:00:00 2001 From: azaozz 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: http://svn.automattic.com/wordpress/trunk@11184 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 b00476ecc..fac3fb201 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; }