- Timestamp:
- 12/16/2014 05:51:49 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/option.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r30673 r30886 53 53 // prevent non-existent options from triggering multiple queries 54 54 $notoptions = wp_cache_get( 'notoptions', 'options' ); 55 if ( isset( $notoptions[$option] ) ) 56 55 if ( isset( $notoptions[ $option ] ) ) { 57 56 /** 58 57 * Filter the default value for an option. … … 66 65 */ 67 66 return apply_filters( 'default_option_' . $option, $default ); 67 } 68 68 69 69 $alloptions = wp_load_alloptions();
Note: See TracChangeset
for help on using the changeset viewer.