Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/spec/fixtures/finders/interesting_findings/php_disabled/version.php
2269 views
1
<?php
2
/**
3
* WordPress Version
4
*
5
* Contains version information for the current WordPress release.
6
*
7
* @package WordPress
8
* @since 1.1.0
9
*/
10
11
/**
12
* The WordPress version string.
13
*
14
* @global string $wp_version
15
*/
16
$wp_version = '5.6';
17
18
/**
19
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
20
*
21
* @global int $wp_db_version
22
*/
23
$wp_db_version = 49752;
24
25
/**
26
* Holds the TinyMCE version.
27
*
28
* @global string $tinymce_version
29
*/
30
$tinymce_version = '49110-20201110';
31
32
/**
33
* Holds the required PHP version.
34
*
35
* @global string $required_php_version
36
*/
37
$required_php_version = '5.6.20';
38
39
/**
40
* Holds the required MySQL version.
41
*
42
* @global string $required_mysql_version
43
*/
44
$required_mysql_version = '5.0';
45
46