Search Installed Plugins, Search Installed Themes. props garyc40, fixes #16543.

git-svn-id: https://develop.svn.wordpress.org/trunk@17927 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-05-14 19:41:42 +00:00
parent 5178cdbfe8
commit ecf9b19fea
2 changed files with 3 additions and 3 deletions

View File

@ -393,7 +393,7 @@ if ( $s )
<form method="post" action="">
<?php $wp_list_table->search_box( __( 'Search Plugins' ), 'plugin' ); ?>
<?php $wp_list_table->search_box( __( 'Search Installed Plugins' ), 'plugin' ); ?>
<input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
<input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />

View File

@ -147,9 +147,9 @@ if ( ! current_user_can( 'switch_themes' ) ) {
<form class="search-form filter-form" action="" method="get">
<p class="search-box">
<label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label>
<label class="screen-reader-text" for="theme-search-input"><?php _e('Search Installed Themes'); ?>:</label>
<input type="text" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" />
<?php submit_button( __( 'Search Themes' ), 'button', 'submit', false ); ?>
<?php submit_button( __( 'Search Installed Themes' ), 'button', 'submit', false ); ?>
<a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a>
</p>