diff --git wp-includes/bookmark-template.php wp-includes/bookmark-template.php
index c27ce4a31a163bcbf0ea5bf0bf25fb569d65c788..1a9200b8fcabc61e529a50c3ec5a8e013e91651f 100644
|
|
|
function wp_list_bookmarks($args = '') { |
| 209 | 209 | 'category_after' => '</li>' |
| 210 | 210 | ); |
| 211 | 211 | |
| 212 | | if ( empty( $args['category'] ) ) |
| 213 | | $args['categorize'] = 0; |
| | 212 | |
| 214 | 213 | |
| 215 | 214 | $r = wp_parse_args( $args, $defaults ); |
| 216 | 215 | extract( $r, EXTR_SKIP ); |
| 217 | 216 | |
| | 217 | if ( empty( $args['category'] ) ) |
| | 218 | $categorize = 0; |
| | 219 | |
| 218 | 220 | $output = ''; |
| 219 | 221 | |
| 220 | 222 | if ( $categorize ) { |
| … |
… |
function wp_list_bookmarks($args = '') { |
| 253 | 255 | if ( !$echo ) |
| 254 | 256 | return $output; |
| 255 | 257 | echo $output; |
| 256 | | } |
| | 258 | } |
| | 259 | No newline at end of file |