]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/version.php
Wordpress 2.5.1
[autoinstalls/wordpress.git] / wp-includes / version.php
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 = '2.5.1';
12
13 /**
14  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
15  * changes.
16  *
17  * @global int $wp_db_version
18  */
19 $wp_db_version = 7796;
20
21 ?>