Changeset 31391
- Timestamp:
- 02/09/2015 10:27:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r31374 r31391 2802 2802 return version_compare( $version, '5.0.7', '>=' ); 2803 2803 case 'utf8mb4' : // @since 4.1.0 2804 return version_compare( $version, '5.5.3', '>=' ); 2804 if ( version_compare( $version, '5.5.3', '<' ) ) { 2805 return false; 2806 } 2807 if ( $this->use_mysqli ) { 2808 return mysqli_get_client_version( $this->dbh ) >= 50503; 2809 } else { 2810 return mysql_get_client_version( $this->dbh ) >= 50503; 2811 } 2805 2812 } 2806 2813
Note: See TracChangeset
for help on using the changeset viewer.