Changeset 14330 for trunk/wp-includes/functions.php
- Timestamp:
- 05/02/2010 06:02:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r14211 r14330 638 638 if ( 'yes' == $row->autoload ) { 639 639 $alloptions = wp_load_alloptions(); 640 if ( is set( $alloptions[$option] ) ) {640 if ( is_array( $alloptions ) && isset( $alloptions[$option] ) ) { 641 641 unset( $alloptions[$option] ); 642 642 wp_cache_set( 'alloptions', $alloptions, 'options' );
Note: See TracChangeset
for help on using the changeset viewer.