diff --git src/wp-admin/menu-header.php src/wp-admin/menu-header.php
index ee90d23152..3e5964faa3 100644
|
|
|
|
| 11 | 11 | * |
| 12 | 12 | * @global string $self |
| 13 | 13 | */ |
| | 14 | global $self; |
| 14 | 15 | $self = preg_replace( '|^.*/wp-admin/network/|i', '', $_SERVER['PHP_SELF'] ); |
| 15 | 16 | $self = preg_replace( '|^.*/wp-admin/|i', '', $self ); |
| 16 | 17 | $self = preg_replace( '|^.*/plugins/|i', '', $self ); |
diff --git src/wp-admin/menu.php src/wp-admin/menu.php
index 05da5f213a..de6c771da5 100644
|
|
|
|
| 20 | 20 | * |
| 21 | 21 | * @global array $menu |
| 22 | 22 | */ |
| 23 | | |
| | 23 | global $menu; |
| 24 | 24 | $menu[2] = array( __( 'Dashboard' ), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' ); |
| 25 | 25 | |
| 26 | 26 | $submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' ); |
diff --git src/wp-includes/shortcodes.php src/wp-includes/shortcodes.php
index 938e796fa7..a7781560bc 100644
|
|
|
|
| 39 | 39 | * @var array |
| 40 | 40 | * @global array $shortcode_tags |
| 41 | 41 | */ |
| | 42 | global $shortcode_tags; |
| 42 | 43 | $shortcode_tags = array(); |
| 43 | 44 | |
| 44 | 45 | /** |
diff --git src/wp-includes/version.php src/wp-includes/version.php
index 19ca8b4933..9fdd082a3f 100644
|
|
|
|
| 16 | 16 | * |
| 17 | 17 | * @global string $wp_version |
| 18 | 18 | */ |
| | 19 | global $wp_version; |
| 19 | 20 | $wp_version = '6.2-alpha-54642-src'; |
| 20 | 21 | |
| 21 | 22 | /** |
| … |
… |
$wp_version = '6.2-alpha-54642-src';
|
| 23 | 24 | * |
| 24 | 25 | * @global int $wp_db_version |
| 25 | 26 | */ |
| | 27 | global $wp_db_version; |
| 26 | 28 | $wp_db_version = 53496; |
| 27 | 29 | |
| 28 | 30 | /** |
| … |
… |
$wp_db_version = 53496;
|
| 30 | 32 | * |
| 31 | 33 | * @global string $tinymce_version |
| 32 | 34 | */ |
| | 35 | global $tinymce_version; |
| 33 | 36 | $tinymce_version = '49110-20201110'; |
| 34 | 37 | |
| 35 | 38 | /** |
| … |
… |
$tinymce_version = '49110-20201110';
|
| 37 | 40 | * |
| 38 | 41 | * @global string $required_php_version |
| 39 | 42 | */ |
| | 43 | global $required_php_version; |
| 40 | 44 | $required_php_version = '5.6.20'; |
| 41 | 45 | |
| 42 | 46 | /** |
| … |
… |
$required_php_version = '5.6.20';
|
| 44 | 48 | * |
| 45 | 49 | * @global string $required_mysql_version |
| 46 | 50 | */ |
| | 51 | global $required_mysql_version; |
| 47 | 52 | $required_mysql_version = '5.0'; |