Make WordPress Core

Ticket #9445: 9445.theme-zip-file.patch

File 9445.theme-zip-file.patch, 829 bytes (added by SergeyBiryukov, 13 years ago)
  • wp-admin/includes/theme-install.php

     
    138138<p class="install-help"><?php _e('If you have a theme in a .zip format, you may install it by uploading it here.') ?></p>
    139139<form method="post" enctype="multipart/form-data" action="<?php echo self_admin_url('update.php?action=upload-theme') ?>">
    140140        <?php wp_nonce_field( 'theme-upload') ?>
    141         <input type="file" name="themezip" />
     141        <label class="screen-reader-text" for="themezip"><?php _e('Theme zip file'); ?></label>
     142        <input type="file" id="themezip" name="themezip" />
    142143        <?php submit_button( __( 'Install Now' ), 'button', 'install-theme-submit', false ); ?>
    143144</form>
    144145        <?php