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
|
|
|
|
|
*/
|
2025-06-09 10:07:10 +02:00
|
|
|
$wp_version = '6.8.1';
|
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
|
|
|
|
|
*/
|
2025-02-28 08:42:11 +01:00
|
|
|
$wp_db_version = 58975;
|
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
|
|
|
|
|
*/
|
2025-02-28 08:42:11 +01:00
|
|
|
$required_php_version = '7.2.24';
|
2019-11-02 10:38:58 +01:00
|
|
|
|
2025-04-25 12:30:07 +02:00
|
|
|
/**
|
|
|
|
|
* Holds the names of required PHP extensions.
|
|
|
|
|
*
|
|
|
|
|
* @global string[] $required_php_extensions
|
|
|
|
|
*/
|
|
|
|
|
$required_php_extensions = array(
|
|
|
|
|
'json',
|
|
|
|
|
'hash',
|
|
|
|
|
);
|
|
|
|
|
|
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
|
|
|
|
|
*/
|
2024-04-17 11:32:24 +02:00
|
|
|
$required_mysql_version = '5.5.5';
|
2019-11-15 22:59:44 +01:00
|
|
|
|
|
|
|
|
$wp_local_package = 'sv_SE';
|