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
|
|
|
|
*/
|
2009-12-02 00:57:13 +01:00
|
|
|
$wp_version = '2.9-beta-2';
|
2008-01-04 21:05:07 +01:00
|
|
|
|
|
|
|
/**
|
2008-06-24 19:45:33 +02:00
|
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
2008-01-04 21:05:07 +01:00
|
|
|
*
|
|
|
|
* @global int $wp_db_version
|
|
|
|
*/
|
2009-11-19 17:42:07 +01:00
|
|
|
$wp_db_version = 12217;
|
2004-01-28 02:52:58 +01:00
|
|
|
|
2009-05-18 22:29:26 +02:00
|
|
|
/**
|
|
|
|
* Holds the TinyMCE version
|
|
|
|
*
|
|
|
|
* @global string $tinymce_version
|
|
|
|
*/
|
2009-12-01 10:22:48 +01:00
|
|
|
$tinymce_version = '327-1235';
|
2009-05-18 22:29:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the cache manifest version
|
|
|
|
*
|
|
|
|
* @global string $manifest_version
|
|
|
|
*/
|
2009-06-17 03:06:32 +02:00
|
|
|
$manifest_version = '20090616';
|