Changeset 6983 for trunk/wp-includes/functions.php
- Timestamp:
- 02/22/2008 05:43:56 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6817 r6983 376 376 // expected_slashed ($name) 377 377 $option = $wpdb->get_row( "SELECT option_id, autoload FROM $wpdb->options WHERE option_name = '$name'" ); 378 if ( !$option->option_id )378 if ( is_null($option) || !$option->option_id ) 379 379 return false; 380 380 // expected_slashed ($name)
Note: See TracChangeset
for help on using the changeset viewer.