Ticket #31644: 31644.patch
File 31644.patch, 530 bytes (added by , 10 years ago) |
---|
-
src/wp-includes/wp-db.php
2805 2805 return false; 2806 2806 } 2807 2807 if ( $this->use_mysqli ) { 2808 return mysqli_get_client_version( $this->dbh) >= 50503;2808 return mysqli_get_client_version() >= 50503; 2809 2809 } else { 2810 return mysql_get_client_ version( $this->dbh) >= 50503;2810 return mysql_get_client_info() >= 50503; 2811 2811 } 2812 2812 } 2813 2813