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