Changeset 3899
- Timestamp:
- 06/22/06 03:55:03 (2 years ago)
- Files:
-
- trunk/wp-includes/bookmark-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/bookmark-template.php
r3880 r3899 360 360 $cats = get_categories("type=link&orderby=$category_orderby&order=$category_order&hierarchical=0"); 361 361 foreach ( (array) $cats as $cat ) { 362 $r['category'] = $cat->cat_ID; 362 363 $bookmarks = get_bookmarks($r); 363 364 if ( empty($bookmarks) ) 364 365 continue; 365 366 $output .= "<li id=\"linkcat-$cat->cat_ID\">$title_before$cat->cat_name$title_after\n\t<ul>\n"; 366 $r['category'] = $cat->cat_ID;367 367 $output .= _walk_bookmarks($bookmarks, $r); 368 368 $output .= "\n\t</ul>\n</li>\n";
