doaction buttons don't need a name, only an ID. fixes #16345.
git-svn-id: http://svn.automattic.com/wordpress/trunk@17352 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8249212f7d
commit
45828057ed
|
@ -282,7 +282,7 @@ class WP_List_Table {
|
|||
echo "\t<option value='$name'>$title</option>\n";
|
||||
echo "</select>\n";
|
||||
|
||||
submit_button( __( 'Apply' ), 'button-secondary action', "doaction$two", false );
|
||||
submit_button( __( 'Apply' ), 'button-secondary action', false, false, array( 'id' => "doaction$two" ) );
|
||||
echo "\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue