Changeset 4212
- Timestamp:
- 09/23/06 09:33:51 (2 years ago)
- Files:
-
- trunk/wp-includes/bookmark-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/bookmark-template.php
r4165 r4212 231 231 232 232 // Display the category name 233 echo ' <li id="linkcat-' . $cat->cat_ID . '" ><h2>' . $cat->cat_name . "</h2>\n\t<ul>\n";233 echo ' <li id="linkcat-' . $cat->cat_ID . '" class="linkcat"><h2>' . $cat->cat_name . "</h2>\n\t<ul>\n"; 234 234 // Call get_links() with all the appropriate params 235 235 get_links($cat->cat_ID, '<li>', "</li>", "\n", true, 'name', false); … … 341 341 if ( empty($bookmarks) ) 342 342 continue; 343 $output .= "<li id= \"linkcat-$cat->cat_ID\">$title_before$cat->cat_name$title_after\n\t<ul>\n";343 $output .= "<li id='linkcat-$cat->cat_ID' class='linkcat'>$title_before$cat->cat_name$title_after\n\t<ul>\n"; 344 344 $output .= _walk_bookmarks($bookmarks, $r); 345 345 $output .= "\n\t</ul>\n</li>\n";
