Changeset 4964
- Timestamp:
- 03/04/2007 01:59:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r4953 r4964 332 332 333 333 foreach ( (array) $cats as $cat ) { 334 $bookmarks = get_bookmarks("limit=$limit&category={$cat->cat_ID}&show_updated=$show_updated&orderby=$orderby&order=$order&hide_invisible=$hide_invisible&show_updated=$show_updated"); 334 $params = array_merge($r, array('category'=>$cat->cat_ID)); 335 $bookmarks = get_bookmarks($params); 335 336 if ( empty($bookmarks) ) 336 337 continue; … … 342 343 } else { 343 344 //output one single list using title_li for the title 344 $bookmarks = get_bookmarks( "limit=$limit&category=$category&show_updated=$show_updated&orderby=$orderby&order=$order&hide_invisible=$hide_invisible&show_updated=$show_updated");345 $bookmarks = get_bookmarks($r); 345 346 346 347 if ( !empty($bookmarks) ) {
Note: See TracChangeset
for help on using the changeset viewer.