Changeset 5708 for trunk/wp-includes/bookmark-template.php
- Timestamp:
- 06/14/2007 10:45:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r5700 r5708 26 26 27 27 $r = wp_parse_args( $args, $defaults ); 28 extract( $r );28 extract( $r, EXTR_SKIP ); 29 29 30 30 return get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated, $echo); … … 248 248 249 249 $r = wp_parse_args( $args, $defaults ); 250 extract( $r );250 extract( $r, EXTR_SKIP ); 251 251 252 252 foreach ( (array) $bookmarks as $bookmark ) { … … 328 328 329 329 $r = wp_parse_args( $args, $defaults ); 330 extract( $r );330 extract( $r, EXTR_SKIP ); 331 331 332 332 $output = '';
Note: See TracChangeset
for help on using the changeset viewer.