Changeset 5714 for branches/2.2/wp-includes/widgets.php
- Timestamp:
- 06/15/2007 05:45:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-includes/widgets.php
r5688 r5714 390 390 function wp_widget_links($args) { 391 391 global $wp_db_version; 392 extract($args );392 extract($args, EXTR_SKIP); 393 393 if ( $wp_db_version < 3582 ) { 394 394 // This ONLY works with li/h2 sidebars. … … 806 806 function wp_widget_rss($args, $number = 1) { 807 807 require_once(ABSPATH . WPINC . '/rss.php'); 808 extract($args );808 extract($args, EXTR_SKIP); 809 809 $options = get_option('widget_rss'); 810 810 if ( isset($options['error']) && $options['error'] )
Note: See TracChangeset
for help on using the changeset viewer.