Use submt_button(). see #14435

git-svn-id: http://svn.automattic.com/wordpress/trunk@16240 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-11-08 17:45:20 +00:00
parent c4770f14d0
commit 0ea71e1e45
1 changed files with 2 additions and 2 deletions

View File

@ -441,14 +441,14 @@ function wp_network_dashboard_right_now() {
<form name="searchform" action="<?php echo network_admin_url('users.php'); ?>" method="get">
<p>
<input type="text" name="s" value="" size="17" />
<input class="button" type="submit" name="submit" value="<?php esc_attr_e( 'Search Users' ); ?>" />
<?php submit_button( __( 'Search Users' ), 'button', 'submit', false ); ?>
</p>
</form>
<form name="searchform" action="<?php echo network_admin_url('sites.php'); ?>" method="get">
<p>
<input type="text" name="s" value="" size="17" />
<input class="button" type="submit" name="blog_name" value="<?php esc_attr_e( 'Search Sites' ); ?>" />
<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false ); ?>
</p>
</form>
<?php