diff --git wp-admin/includes/dashboard.php wp-admin/includes/dashboard.php
index 8f937f3..0971af2 100644
|
|
function wp_network_dashboard_right_now() { |
442 | 442 | <form name="searchform" action="<?php echo network_admin_url('users.php'); ?>" method="get"> |
443 | 443 | <p> |
444 | 444 | <input type="text" name="s" value="" size="17" /> |
445 | | <?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?> |
| 445 | <?php submit_button( __( 'Search Users' ), 'button', false, false, array( 'id' => 'submit_users' ) ); ?> |
446 | 446 | </p> |
447 | 447 | </form> |
448 | 448 | |
449 | 449 | <form name="searchform" action="<?php echo network_admin_url('sites.php'); ?>" method="get"> |
450 | 450 | <p> |
451 | 451 | <input type="text" name="s" value="" size="17" /> |
452 | | <?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?> |
| 452 | <?php submit_button( __( 'Search Sites' ), 'button', false, false, array( 'id' => 'submit_sites' ) ); ?> |
453 | 453 | </p> |
454 | 454 | </form> |
455 | 455 | <?php |
diff --git wp-admin/themes.php wp-admin/themes.php
index 171a0b2..0df4836 100644
|
|
if ( ! current_user_can( 'switch_themes' ) ) { |
149 | 149 | <p class="search-box"> |
150 | 150 | <label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label> |
151 | 151 | <input type="text" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" /> |
152 | | <?php submit_button( __( 'Search Themes' ), 'button', 'submit', false ); ?> |
| 152 | <?php submit_button( __( 'Search Themes' ), 'button', false, false, array( 'id' => 'search-submit' ) ); ?> |
153 | 153 | <a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a> |
154 | 154 | </p> |
155 | 155 | |
… |
… |
if ( ! current_user_can( 'switch_themes' ) ) { |
184 | 184 | <?php endforeach; ?> |
185 | 185 | |
186 | 186 | <div class="feature-container"> |
187 | | <?php submit_button( __( 'Apply Filters' ), 'button-secondary submitter', 'submit', false, array( 'style' => 'margin-left: 120px' ) ); ?> |
| 187 | <?php submit_button( __( 'Apply Filters' ), 'button-secondary submitter', false, false, array( 'style' => 'margin-left: 120px' ) ); ?> |
188 | 188 | |
189 | 189 | <small><a id="mini-filter-click" href="<?php echo esc_url( remove_query_arg( array('filter', 'features', 'submit') ) ); ?>"><?php _e( 'Close filters' )?></a></small> |
190 | 190 | </div> |