Changeset 22633
- Timestamp:
- 11/17/2012 01:20:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/option.php
r22256 r22633 33 33 global $wpdb; 34 34 35 $option = trim( $option ); 36 if ( empty( $option ) ) 37 return false; 38 35 39 // Allow plugins to short-circuit options. 36 40 $pre = apply_filters( 'pre_option_' . $option, false ); 37 41 if ( false !== $pre ) 38 42 return $pre; 39 40 $option = trim($option);41 if ( empty($option) )42 return false;43 43 44 44 if ( defined( 'WP_SETUP_CONFIG' ) )
Note: See TracChangeset
for help on using the changeset viewer.