1 | <?php |
2 | /** |
3 | * This holds the version number in a separate file so we can bump it without cluttering the SVN |
4 | */ |
5 | |
6 | /** |
7 | * The WordPress version string |
8 | * |
9 | * @global string $wp_version |
10 | */ |
11 | $wp_version = '3.0.1'; |
12 | |
13 | /** |
14 | * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |
15 | * |
16 | * @global int $wp_db_version |
17 | */ |
18 | $wp_db_version = 15477; |
19 | |
20 | /** |
21 | * Holds the TinyMCE version |
22 | * |
23 | * @global string $tinymce_version |
24 | */ |
25 | $tinymce_version = '327-1235'; |
26 | |
27 | /** |
28 | * Holds the cache manifest version |
29 | * |
30 | * @global string $manifest_version |
31 | */ |
32 | $manifest_version = '20100530'; |
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'; |
47 | |