From f3490db600c3151272d3c2ca4f30751358fb3b53 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Thu, 16 Dec 2010 21:08:37 +0000 Subject: [PATCH] Give the screen options Apply button an id so it validates. git-svn-id: https://develop.svn.wordpress.org/trunk@17007 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 0e3d71b4c5..cb015d4f01 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1897,7 +1897,7 @@ function screen_options($screen) { $return = "
\n"; if ( !empty($per_page_label) ) $return .= " \n"; - $return .= get_submit_button( __( 'Apply' ), 'button', '', false ); + $return .= get_submit_button( __( 'Apply' ), 'button', 'screen-options-apply', false ); $return .= ""; $return .= "
\n"; return $return;