2015-09-03 05:33:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The WordPress version string
|
|
|
|
*
|
|
|
|
* @global string $wp_version
|
|
|
|
*/
|
2022-08-30 19:37:49 +02:00
|
|
|
$wp_version = '4.3.29';
|
2015-09-03 05:33:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
|
|
*
|
|
|
|
* @global int $wp_db_version
|
|
|
|
*/
|
2015-09-03 06:38:15 +02:00
|
|
|
$wp_db_version = 33056;
|
2015-09-03 05:33:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the TinyMCE version
|
|
|
|
*
|
|
|
|
* @global string $tinymce_version
|
|
|
|
*/
|
2015-09-11 01:57:23 +02:00
|
|
|
$tinymce_version = '4205-20150910';
|
2015-09-03 05:33:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the required PHP version
|
|
|
|
*
|
|
|
|
* @global string $required_php_version
|
|
|
|
*/
|
|
|
|
$required_php_version = '5.2.4';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the required MySQL version
|
|
|
|
*
|
|
|
|
* @global string $required_mysql_version
|
|
|
|
*/
|
|
|
|
$required_mysql_version = '5.0';
|