Make WordPress Core

Ticket #21663: 21663.7.diff

File 21663.7.diff, 726 bytes (added by wonderboymusic, 11 years ago)
  • src/wp-includes/wp-db.php

     
    11391139                $client_flags = defined( 'MYSQL_CLIENT_FLAGS' ) ? MYSQL_CLIENT_FLAGS : 0;
    11401140
    11411141                if ( WP_DEBUG ) {
     1142                        $error_reporting = error_reporting();
     1143                        if ( defined( 'E_DEPRECATED' ) ) {
     1144                                error_reporting( E_ALL ^ E_DEPRECATED );
     1145                        }
    11421146                        $this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
     1147                        error_reporting( $error_reporting );
    11431148                } else {
    11441149                        $this->dbh = @mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
    11451150                }