Ticket #21080: 21080.patch
File 21080.patch, 1.4 KB (added by , 13 years ago) |
---|
-
wp-admin/includes/plugin-install.php
128 128 <option value="tag"<?php selected('tag', $type) ?>><?php _ex('Tag', 'Plugin Installer'); ?></option> 129 129 </select> 130 130 <?php endif; ?> 131 <input type="search" name="s" value="<?php echo esc_attr($term) ?>" />131 <input type="search" name="s" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" /> 132 132 <label class="screen-reader-text" for="plugin-search-input"><?php _e('Search Plugins'); ?></label> 133 133 <?php submit_button( __( 'Search Plugins' ), 'button', 'plugin-search-input', false ); ?> 134 134 </form><?php -
wp-admin/includes/theme-install.php
64 64 <option value="tag" <?php selected('tag', $type) ?>><?php _ex('Tag', 'Theme Installer'); ?></option> 65 65 </select> 66 66 <?php endif; ?> 67 <input type="search" name="s" size="30" value="<?php echo esc_attr($term) ?>" />67 <input type="search" name="s" size="30" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" /> 68 68 <?php submit_button( __( 'Search' ), 'button', 'search', false ); ?> 69 69 </form> 70 70 <?php