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:
parent
84591d777c
commit
154896f99d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue