2004-01-28 02:52:58 +01:00
|
|
|
<?php
|
2008-01-04 21:05:07 +01:00
|
|
|
/**
|
|
|
|
|
* The WordPress version string
|
|
|
|
|
*
|
|
|
|
|
* @global string $wp_version
|
|
|
|
|
*/
|
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth.
See #40702.
Built from https://develop.svn.wordpress.org/trunk@40607
git-svn-id: http://core.svn.wordpress.org/trunk@40477 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-10 22:04:42 +02:00
|
|
|
$wp_version = '4.8-alpha-40607';
|
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
|
|
|
|
|
*/
|
2016-09-12 04:28:30 +02:00
|
|
|
$wp_db_version = 38590;
|
2004-01-28 02:52:58 +01:00
|
|
|
|
2009-05-18 22:29:26 +02:00
|
|
|
/**
|
|
|
|
|
* Holds the TinyMCE version
|
|
|
|
|
*
|
|
|
|
|
* @global string $tinymce_version
|
|
|
|
|
*/
|
2017-05-08 07:32:46 +02:00
|
|
|
$tinymce_version = '4600-20170506';
|
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
|
|
|
|
|
*/
|
2011-03-21 19:30:56 +01:00
|
|
|
$required_php_version = '5.2.4';
|
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';
|