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
This commit is contained in:
azaozz 2009-05-05 02:23:40 +00:00
parent 84591d777c
commit 154896f99d
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ function _walk_bookmarks($bookmarks, $args = '' ) {
else // If it's a relative path
$output .= "<img src=\"" . get_option('siteurl') . "$bookmark->link_image\" $alt $title />";
if ($show_name) $output .= $name;
if ( $show_name )
$output .= " $name";
} else {
$output .= $name;
}