2004-01-27 20:52:58 -05:00
|
|
|
<?php
|
2008-01-04 15:05:07 -05:00
|
|
|
/**
|
|
|
|
* This holds the version number in a separate file so we can bump it without cluttering the SVN
|
|
|
|
*/
|
2004-01-27 20:52:58 -05:00
|
|
|
|
2008-01-04 15:05:07 -05:00
|
|
|
/**
|
|
|
|
* The WordPress version string
|
|
|
|
*
|
|
|
|
* @global string $wp_version
|
|
|
|
*/
|
2008-03-29 10:39:28 -04:00
|
|
|
$wp_version = '2.5';
|
2008-01-04 15:05:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
|
|
|
|
* changes.
|
|
|
|
*
|
|
|
|
* @global int $wp_db_version
|
|
|
|
*/
|
2008-03-28 02:08:20 -04:00
|
|
|
$wp_db_version = 7558;
|
2004-01-27 20:52:58 -05:00
|
|
|
|
2008-02-13 14:15:30 -05:00
|
|
|
?>
|