Ticket #35113: 35113.patch
| File 35113.patch, 867 bytes (added by , 10 years ago) |
|---|
-
src/wp-admin/includes/theme-install.php
143 143 <p class="install-help"><?php _e('If you have a theme in a .zip format, you may install it by uploading it here.'); ?></p> 144 144 <form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo self_admin_url('update.php?action=upload-theme'); ?>"> 145 145 <?php wp_nonce_field( 'theme-upload'); ?> 146 <input type="file" name="themezip" /> 146 <label class="screen-reader-text" for="themezip"><?php _e('Theme zip file'); ?></label> 147 <input type="file" id="themezip" name="themezip" /> 147 148 <?php submit_button( __( 'Install Now' ), 'button', 'install-theme-submit', false ); ?> 148 149 </form> 149 150 <?php