Make WordPress Core

Ticket #33501: 33501.patch

File 33501.patch, 657 bytes (added by justingreerbbi, 9 years ago)
  • src/wp-includes/wp-db.php

     
    24012401                }
    24022402
    24032403                // Skip this entirely if this isn't a MySQL database.
    2404                 if ( false === $this->is_mysql ) {
     2404                if ( false === $this->is_mysql || empty( $this->is_mysql ) ) {
    24052405                        return false;
    24062406                }
    24072407
     
    24502450                $columnkey = strtolower( $column );
    24512451
    24522452                // Skip this entirely if this isn't a MySQL database.
    2453                 if ( false === $this->is_mysql ) {
     2453                if ( false === $this->is_mysql || empty( $this->is_mysql ) ) {
    24542454                        return false;
    24552455                }
    24562456