Changeset 12410
- Timestamp:
- 12/15/2009 09:04:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r12409 r12410 1051 1051 { 1052 1052 global $wp_version; 1053 // Make sure the server has MySQL 4.1 1054 if ( version_compare($this->db_version(), '4.1. 0', '<') )1055 return new WP_Error('database_version',sprintf(__('<strong>ERROR</strong>: WordPress %s requires MySQL 4.1. 0or higher'), $wp_version));1053 // Make sure the server has MySQL 4.1.2 1054 if ( version_compare($this->db_version(), '4.1.2', '<') ) 1055 return new WP_Error('database_version',sprintf(__('<strong>ERROR</strong>: WordPress %s requires MySQL 4.1.2 or higher'), $wp_version)); 1056 1056 } 1057 1057
Note: See TracChangeset
for help on using the changeset viewer.