Ticket #17749: globalize-version-vars.diff
File globalize-version-vars.diff, 1.0 KB (added by , 12 years ago) |
---|
-
wp-includes/version.php
4 4 * 5 5 * @global string $wp_version 6 6 */ 7 $ wp_version= '3.6-alpha-23495';7 $GLOBALS['wp_version'] = '3.6-alpha-23495'; 8 8 9 9 /** 10 10 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. 11 11 * 12 12 * @global int $wp_db_version 13 13 */ 14 $ wp_db_version= 22441;14 $GLOBALS['wp_db_version'] = 22441; 15 15 16 16 /** 17 17 * Holds the TinyMCE version 18 18 * 19 19 * @global string $tinymce_version 20 20 */ 21 $ tinymce_version= '358-23403';21 $GLOBALS['tinymce_version'] = '358-23403'; 22 22 23 23 /** 24 24 * Holds the required PHP version 25 25 * 26 26 * @global string $required_php_version 27 27 */ 28 $ required_php_version= '5.2.4';28 $GLOBALS['required_php_version'] = '5.2.4'; 29 29 30 30 /** 31 31 * Holds the required MySQL version 32 32 * 33 33 * @global string $required_mysql_version 34 34 */ 35 $ required_mysql_version= '5.0';35 $GLOBALS['required_mysql_version'] = '5.0';