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

git-svn-id: https://develop.svn.wordpress.org/trunk@12432 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2009-12-17 18:46:19 +00:00
parent 047c6a7429
commit 0df26215b0
2 changed files with 27 additions and 12 deletions

View File

@@ -30,3 +30,17 @@ $tinymce_version = '327-1235';
* @global string $manifest_version
*/
$manifest_version = '20090616';
/**
* Holds the required PHP version
*
* @global string $required_php_version
*/
$required_php_version = '4.3';
/**
* Holds the required MySQL version
*
* @global string $required_mysql_version
*/
$required_mysql_version = '4.1.2';