]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/version.php
Wordpress 3.0.6-scripts
[autoinstalls/wordpress.git] / wp-includes / version.php
1 <?php
2 /*
3 WordPress - Web publishing software
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 */
19
20 /**
21  * The WordPress version string
22  *
23  * @global string $wp_version
24  */
25 $wp_version = '3.0.6';
26
27 /**
28  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
29  *
30  * @global int $wp_db_version
31  */
32 $wp_db_version = 15477;
33
34 /**
35  * Holds the TinyMCE version
36  *
37  * @global string $tinymce_version
38  */
39 $tinymce_version = '327-1235';
40
41 /**
42  * Holds the cache manifest version
43  *
44  * @global string $manifest_version
45  */
46 $manifest_version = '20100530';
47
48 /**
49  * Holds the required PHP version
50  *
51  * @global string $required_php_version
52  */
53 $required_php_version = '4.3';
54
55 /**
56  * Holds the required MySQL version
57  *
58  * @global string $required_mysql_version
59  */
60 $required_mysql_version = '4.1.2';