Make WordPress Core

Ticket #31644: 31644.patch

File 31644.patch, 530 bytes (added by SergeyBiryukov, 10 years ago)
  • src/wp-includes/wp-db.php

     
    28052805                                        return false;
    28062806                                }
    28072807                                if ( $this->use_mysqli ) {
    2808                                         return mysqli_get_client_version( $this->dbh ) >= 50503;
     2808                                        return mysqli_get_client_version() >= 50503;
    28092809                                } else {
    2810                                         return mysql_get_client_version( $this->dbh ) >= 50503;
     2810                                        return mysql_get_client_info() >= 50503;
    28112811                                }
    28122812                }
    28132813