Changeset 59159 for trunk/src/wp-includes/class-wpdb.php
- Timestamp:
- 10/03/2024 12:23:53 AM (17 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wpdb.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wpdb.php
r59069 r59159 3984 3984 * @since 2.5.0 3985 3985 * 3986 * @global string $wp_version The WordPress version string.3987 3986 * @global string $required_mysql_version The required MySQL version string. 3988 3987 * @return void|WP_Error 3989 3988 */ 3990 3989 public function check_database_version() { 3991 global $wp_version, $required_mysql_version; 3990 global $required_mysql_version; 3991 $wp_version = wp_get_wp_version(); 3992 3992 3993 // Make sure the server has the required MySQL version. 3993 3994 if ( version_compare( $this->db_version(), $required_mysql_version, '<' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.