Make WordPress Core


Ignore:
Timestamp:
06/15/2007 05:45:21 PM (18 years ago)
Author:
ryan
Message:

Use EXTR_SKIP when extracting. For 2.2. See #4468

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/wp-includes/classes.php

    r5289 r5714  
    507507        if ( $depth )
    508508            $indent = str_repeat("\t", $depth);
    509         extract($args);
     509        extract($args, EXTR_SKIP);
    510510        $css_class = 'page_item';
    511511        $_current_page = get_page( $current_page );
     
    697697
    698698        $r = array_merge($defaults, $r);
    699         extract($r);
     699        extract($r, EXTR_SKIP);
    700700
    701701        if ( is_wp_error($id) ) {
Note: See TracChangeset for help on using the changeset viewer.