diff --git a/wp-includes/bookmark-template.php b/wp-includes/bookmark-template.php
index 3c14c3c68f..8f82f0cea9 100644
--- a/wp-includes/bookmark-template.php
+++ b/wp-includes/bookmark-template.php
@@ -230,7 +230,7 @@ function get_links_list($order = 'name', $hide_if_empty = 'obsolete') {
// Handle each category.
// Display the category name
- echo '
' . $cat->cat_name . "
\n\t\n";
+ echo ' ' . $cat->cat_name . "
\n\t\n";
// Call get_links() with all the appropriate params
get_links($cat->cat_ID, '- ', "
", "\n", true, 'name', false);
@@ -340,7 +340,7 @@ function wp_list_bookmarks($args = '') {
$bookmarks = get_bookmarks($r);
if ( empty($bookmarks) )
continue;
- $output .= "- cat_ID\">$title_before$cat->cat_name$title_after\n\t
\n";
+ $output .= "- $title_before$cat->cat_name$title_after\n\t
\n";
$output .= _walk_bookmarks($bookmarks, $r);
$output .= "\n\t
\n \n";
}
@@ -351,4 +351,4 @@ function wp_list_bookmarks($args = '') {
echo $output;
}
-?>
+?>
\ No newline at end of file