Changeset 6391 for trunk/wp-includes/functions.php
- Timestamp:
- 12/16/2007 09:38:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6390 r6391 207 207 if ( false === $value ) { 208 208 if ( defined( 'WP_INSTALLING' ) ) 209 $ wpdb->hide_errors();209 $show = $wpdb->hide_errors(); 210 210 // expected_slashed ($setting) 211 211 $row = $wpdb->get_row( "SELECT option_value FROM $wpdb->options WHERE option_name = '$setting' LIMIT 1" ); 212 212 if ( defined( 'WP_INSTALLING' ) ) 213 $wpdb->show_errors( );213 $wpdb->show_errors($show); 214 214 215 215 if ( is_object( $row) ) { // Has to be get_row instead of get_var because of funkiness with 0, false, null values … … 247 247 function get_alloptions() { 248 248 global $wpdb, $wp_queries; 249 $ wpdb->hide_errors();249 $show = $wpdb->hide_errors(); 250 250 if ( !$options = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes'" ) ) 251 251 $options = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options" ); 252 $wpdb->show_errors( );252 $wpdb->show_errors($show); 253 253 254 254 foreach ( $options as $option ) { … … 270 270 271 271 if ( !$alloptions ) { 272 $ wpdb->hide_errors();272 $show = $wpdb->hide_errors(); 273 273 if ( !$alloptions_db = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes'" ) ) 274 274 $alloptions_db = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options" ); 275 $wpdb->show_errors( );275 $wpdb->show_errors($show); 276 276 $alloptions = array(); 277 277 foreach ( (array) $alloptions_db as $o ) … … 950 950 return true; 951 951 952 $ wpdb->hide_errors();952 $show = $wpdb->hide_errors(); 953 953 $installed = $wpdb->get_var( "SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'" ); 954 $wpdb->show_errors( );954 $wpdb->show_errors($show); 955 955 956 956 $installed = !empty( $installed ) ? true : false;
Note: See TracChangeset
for help on using the changeset viewer.