doaction buttons don't need a name, only an ID. fixes #16345.

git-svn-id: https://develop.svn.wordpress.org/trunk@17352 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-01-22 18:31:35 +00:00
parent e6ef3c9d5a
commit 3949bb8c60
1 changed files with 1 additions and 1 deletions

View File

@ -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";
}