Make WordPress Core


Ignore:
Timestamp:
12/17/2009 06:46:54 PM (14 years ago)
Author:
ryan
Message:

Add required php and mysql versions to version.php. Future proof required version check strings. Props nacin. see #11464 for 2.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.9/wp-includes/version.php

    r12416 r12433  
    3131 */
    3232$manifest_version = '20090616';
     33
     34/**
     35 * Holds the required PHP version
     36 *
     37 * @global string $required_php_version
     38 */
     39$required_php_version = '4.3';
     40
     41/**
     42 * Holds the required MySQL version
     43 *
     44 * @global string $required_mysql_version
     45 */
     46$required_mysql_version = '4.1.2';
Note: See TracChangeset for help on using the changeset viewer.