Make WordPress Core

Ticket #59254: 59254.2.patch

File 59254.2.patch, 1.1 KB (added by upadalavipul, 3 months ago)

added more two files.

  • wp-admin/includes/media.php

     
    20832083 *
    20842084 * @global string $type
    20852085 * @global string $tab
    2086  * @global bool   $is_IE
    2087  * @global bool   $is_opera
    20882086 *
    20892087 * @param array $errors
    20902088 */
    20912089function media_upload_form( $errors = null ) {
    2092         global $type, $tab, $is_IE, $is_opera;
     2090        global $type, $tab;
    20932091
    20942092        if ( ! _device_can_upload() ) {
    20952093                echo '<p>' . sprintf(
  • wp-admin/update-core.php

     
    242242 * Display upgrade WordPress for downloading latest or upgrading automatically form.
    243243 *
    244244 * @since 2.7.0
    245  *
    246  * @global string $required_php_version   The required PHP version string.
    247  * @global string $required_mysql_version The required MySQL version string.
    248245 */
    249246function core_upgrade_preamble() {
    250         global $required_php_version, $required_mysql_version;
    251247
    252248        $updates = get_core_updates();
    253249