Make WordPress Core

Ticket #21663: 21663.9.diff

File 21663.9.diff, 807 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 = false;
     1143                        if ( defined( 'E_DEPRECATED' ) ) {
     1144                                $error_reporting = error_reporting();
     1145                                error_reporting( $error_reporting ^ E_DEPRECATED );
     1146                        }
    11421147                        $this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
     1148                        if ( false !== $error_reporting )
     1149                                error_reporting( $error_reporting );
    11431150                } else {
    11441151                        $this->dbh = @mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
    11451152                }