2004-01-28 02:52:58 +01:00
|
|
|
<?php
|
2018-10-01 23:00:26 +02:00
|
|
|
/**
|
|
|
|
* WordPress Version
|
|
|
|
*
|
|
|
|
* Contains version information for the current WordPress release.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @since 1.1.0
|
|
|
|
*/
|
|
|
|
|
2008-01-04 21:05:07 +01:00
|
|
|
/**
|
|
|
|
* The WordPress version string
|
|
|
|
*
|
|
|
|
* @global string $wp_version
|
|
|
|
*/
|
2019-08-04 00:17:57 +02:00
|
|
|
$wp_version = '5.3-alpha-45731';
|
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
|
|
|
|
*/
|
2019-02-08 01:16:50 +01:00
|
|
|
$wp_db_version = 44719;
|
2004-01-28 02:52:58 +01:00
|
|
|
|
2009-05-18 22:29:26 +02:00
|
|
|
/**
|
|
|
|
* Holds the TinyMCE version
|
|
|
|
*
|
|
|
|
* @global string $tinymce_version
|
|
|
|
*/
|
2019-05-16 01:45:52 +02:00
|
|
|
$tinymce_version = '4940-20190515';
|
2009-05-18 22:29:26 +02:00
|
|
|
|
2009-12-17 19:46:19 +01:00
|
|
|
/**
|
|
|
|
* Holds the required PHP version
|
|
|
|
*
|
|
|
|
* @global string $required_php_version
|
|
|
|
*/
|
2019-03-28 22:12:52 +01:00
|
|
|
$required_php_version = '5.6.20';
|
2009-12-17 19:46:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the required MySQL version
|
|
|
|
*
|
|
|
|
* @global string $required_mysql_version
|
|
|
|
*/
|
2011-03-21 19:30:56 +01:00
|
|
|
$required_mysql_version = '5.0';
|