~katiekitty/+junk/wordpress-byet

« back to all changes in this revision

Viewing changes to wp-includes/version.php

  • Committer: kserver
  • Date: 2010-05-15 01:16:36 UTC
  • Revision ID: kserver@kserver-desktop-20100515011636-mnr1j7t637suptdq
Wordpress 2.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 *
9
9
 * @global string $wp_version
10
10
 */
11
 
$wp_version = '2.8.5';
 
11
$wp_version = '2.9.2';
12
12
 
13
13
/**
14
14
 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
15
15
 *
16
16
 * @global int $wp_db_version
17
17
 */
18
 
$wp_db_version = 11548;
 
18
$wp_db_version = 12329;
19
19
 
20
20
/**
21
21
 * Holds the TinyMCE version
22
22
 *
23
23
 * @global string $tinymce_version
24
24
 */
25
 
$tinymce_version = '3241-1141';
 
25
$tinymce_version = '327-1235';
26
26
 
27
27
/**
28
28
 * Holds the cache manifest version
30
30
 * @global string $manifest_version
31
31
 */
32
32
$manifest_version = '20090616';
 
33
 
 
34
/**
 
35
 * Holds the required PHP version
 
36
 *
 
37
 * @global string $required_php_version
 
38
 */
 
39
$required_php_version = '4.3';
 
40
 
 
41
/**
 
42
 * Holds the required MySQL version
 
43
 *
 
44
 * @global string $required_mysql_version
 
45
 */
 
46
$required_mysql_version = '4.1.2';