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
This commit is contained in:
Andrew Ozz 2009-05-05 02:23:40 +00:00
parent 8c0943cbf2
commit 1741eb34e0
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;
}