kollapsminoriteten/wp-includes/version.php

50 lines
958 B
PHP
Raw Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
* WordPress Version
*
* Contains version information for the current WordPress release.
*
* @package WordPress
2021-07-23 11:58:50 +02:00
* @since 1.2.0
2019-11-02 10:38:58 +01:00
*/
/**
2020-05-06 17:23:38 +02:00
* The WordPress version string.
2019-11-02 10:38:58 +01:00
*
2022-04-02 10:26:41 +02:00
* Holds the current version number for WordPress core. Used to bust caches
* and to enable development mode for scripts when running from the /src directory.
*
2019-11-02 10:38:58 +01:00
* @global string $wp_version
*/
2023-12-07 09:44:11 +01:00
$wp_version = '6.4.2';
2019-11-02 10:38:58 +01:00
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
2023-12-07 09:44:11 +01:00
$wp_db_version = 56657;
2019-11-02 10:38:58 +01:00
/**
2020-05-06 17:23:38 +02:00
* Holds the TinyMCE version.
2019-11-02 10:38:58 +01:00
*
* @global string $tinymce_version
*/
2020-12-10 14:06:04 +01:00
$tinymce_version = '49110-20201110';
2019-11-02 10:38:58 +01:00
/**
2020-05-06 17:23:38 +02:00
* Holds the required PHP version.
2019-11-02 10:38:58 +01:00
*
* @global string $required_php_version
*/
2023-09-26 10:33:34 +02:00
$required_php_version = '7.0.0';
2019-11-02 10:38:58 +01:00
/**
2020-05-06 17:23:38 +02:00
* Holds the required MySQL version.
2019-11-02 10:38:58 +01:00
*
* @global string $required_mysql_version
*/
$required_mysql_version = '5.0';
2019-11-15 22:59:44 +01:00
$wp_local_package = 'sv_SE';