Make WordPress Core


Ignore:
Timestamp:
06/14/2007 10:45:40 PM (18 years ago)
Author:
ryan
Message:

Use EXTR_SKIP when extracting. see #4468

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/bookmark-template.php

    r5700 r5708  
    2626
    2727    $r = wp_parse_args( $args, $defaults );
    28     extract( $r );
     28    extract( $r, EXTR_SKIP );
    2929
    3030    return get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated, $echo);
     
    248248
    249249    $r = wp_parse_args( $args, $defaults );
    250     extract( $r );
     250    extract( $r, EXTR_SKIP );
    251251
    252252    foreach ( (array) $bookmarks as $bookmark ) {
     
    328328
    329329    $r = wp_parse_args( $args, $defaults );
    330     extract( $r );
     330    extract( $r, EXTR_SKIP );
    331331
    332332    $output = '';
Note: See TracChangeset for help on using the changeset viewer.