Changeset 31783
- Timestamp:
- 03/15/2015 12:19:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r31391 r31783 2806 2806 } 2807 2807 if ( $this->use_mysqli ) { 2808 return mysqli_get_client_version( $this->dbh ) >= 50503;2808 $client_version = mysqli_get_client_info(); 2809 2809 } else { 2810 return mysql_get_client_version( $this->dbh ) >= 50503;2810 $client_version = mysql_get_client_info(); 2811 2811 } 2812 2813 return version_compare( $client_version, '5.5.3', '>=' ); 2812 2814 } 2813 2815
Note: See TracChangeset
for help on using the changeset viewer.