Ticket #9445: 9445.theme-zip-file.patch
| File 9445.theme-zip-file.patch, 829 bytes (added by , 13 years ago) |
|---|
-
wp-admin/includes/theme-install.php
138 138 <p class="install-help"><?php _e('If you have a theme in a .zip format, you may install it by uploading it here.') ?></p> 139 139 <form method="post" enctype="multipart/form-data" action="<?php echo self_admin_url('update.php?action=upload-theme') ?>"> 140 140 <?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" /> 142 143 <?php submit_button( __( 'Install Now' ), 'button', 'install-theme-submit', false ); ?> 143 144 </form> 144 145 <?php