Changeset 18677
- Timestamp:
- 09/15/2011 10:08:43 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/default-widgets.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-widgets.php
r18676 r18677 526 526 $cache = array(); 527 527 528 if ( isset( $args['widget_id'] ) && isset( $cache[ $args['widget_id'] ] ) ) { 528 if ( ! isset( $args['widget_id'] ) ) 529 $args['widget_id'] = $this->id; 530 531 if ( false && isset( $cache[ $args['widget_id'] ] ) ) { 529 532 echo $cache[ $args['widget_id'] ]; 530 533 return; … … 629 632 $cache = array(); 630 633 631 if ( isset( $args['widget_id'] ) && isset( $cache[ $args['widget_id'] ] ) ) { 634 if ( ! isset( $args['widget_id'] ) ) 635 $args['widget_id'] = $this->id; 636 637 if ( false && isset( $cache[ $args['widget_id'] ] ) ) { 632 638 echo $cache[ $args['widget_id'] ]; 633 639 return;
Note: See TracChangeset
for help on using the changeset viewer.