2004-01-28 02:52:58 +01:00
|
|
|
<?php
|
2008-01-04 21:05:07 +01:00
|
|
|
/**
|
|
|
|
* This holds the version number in a separate file so we can bump it without cluttering the SVN
|
|
|
|
*/
|
2004-01-28 02:52:58 +01:00
|
|
|
|
2008-01-04 21:05:07 +01:00
|
|
|
/**
|
|
|
|
* The WordPress version string
|
|
|
|
*
|
|
|
|
* @global string $wp_version
|
|
|
|
*/
|
2007-09-29 12:56:53 +02:00
|
|
|
$wp_version = '2.4-bleeding';
|
2008-01-04 21:05:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
|
|
|
|
* changes.
|
|
|
|
*
|
|
|
|
* @global int $wp_db_version
|
|
|
|
*/
|
2008-02-07 07:07:12 +01:00
|
|
|
$wp_db_version = 6748;
|
2004-01-28 02:52:58 +01:00
|
|
|
|
2008-01-04 21:05:07 +01:00
|
|
|
?>
|