2004-01-27 20:52:58 -05:00
|
|
|
<?php
|
2008-01-04 15:05:07 -05:00
|
|
|
/**
|
|
|
|
* The WordPress version string
|
|
|
|
*
|
|
|
|
* @global string $wp_version
|
|
|
|
*/
|
2012-06-11 19:58:20 -04:00
|
|
|
$wp_version = '3.4-RC2-21058';
|
2008-01-04 15:05:07 -05:00
|
|
|
|
|
|
|
/**
|
2008-06-24 13:45:33 -04:00
|
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
2008-01-04 15:05:07 -05:00
|
|
|
*
|
|
|
|
* @global int $wp_db_version
|
|
|
|
*/
|
2012-04-25 16:49:57 -04:00
|
|
|
$wp_db_version = 20596;
|
2004-01-27 20:52:58 -05:00
|
|
|
|
2009-05-18 16:29:26 -04:00
|
|
|
/**
|
|
|
|
* Holds the TinyMCE version
|
|
|
|
*
|
|
|
|
* @global string $tinymce_version
|
|
|
|
*/
|
2012-05-16 03:58:24 -04:00
|
|
|
$tinymce_version = '349-20805';
|
2009-05-18 16:29:26 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the cache manifest version
|
|
|
|
*
|
|
|
|
* @global string $manifest_version
|
|
|
|
*/
|
2011-01-13 16:57:30 -05:00
|
|
|
$manifest_version = '20111113';
|
2009-12-17 13:46:19 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the required PHP version
|
|
|
|
*
|
|
|
|
* @global string $required_php_version
|
|
|
|
*/
|
2011-03-21 14:30:56 -04:00
|
|
|
$required_php_version = '5.2.4';
|
2009-12-17 13:46:19 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the required MySQL version
|
|
|
|
*
|
|
|
|
* @global string $required_mysql_version
|
|
|
|
*/
|
2011-03-21 14:30:56 -04:00
|
|
|
$required_mysql_version = '5.0';
|