Make WordPress Core

Ticket #8608: 8608.diff

File 8608.diff, 491 bytes (added by sivel, 17 years ago)

Add a space before the link name

  • wp-includes/bookmark-template.php

     
    106106                        else // If it's a relative path
    107107                                $output .= "<img src=\"" . get_option('siteurl') . "$bookmark->link_image\" $alt $title />";
    108108
    109                         if ($show_name) $output .= $name;
     109                        if ($show_name) $output .= " $name";
    110110                } else {
    111111                        $output .= $name;
    112112                }