Updates: Select All should not be a column header.
See #31654. props tywayne. fixes #32905. Built from https://develop.svn.wordpress.org/trunk@33133 git-svn-id: http://core.svn.wordpress.org/trunk@33104 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
54428b546e
commit
28ecfd83c6
|
@ -245,7 +245,7 @@ function list_plugin_updates() {
|
|||
<table class="widefat" id="update-plugins-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th>
|
||||
<td scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></td>
|
||||
<th scope="col" class="manage-column"><label for="plugins-select-all"><?php _e('Select All'); ?></label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -298,7 +298,7 @@ function list_plugin_updates() {
|
|||
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>
|
||||
<td scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></td>
|
||||
<th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e( 'Select All' ); ?></label></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
@ -330,7 +330,7 @@ function list_theme_updates() {
|
|||
<table class="widefat" id="update-themes-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th>
|
||||
<td scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></td>
|
||||
<th scope="col" class="manage-column"><label for="themes-select-all"><?php _e('Select All'); ?></label></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -349,7 +349,7 @@ function list_theme_updates() {
|
|||
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>
|
||||
<td scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></td>
|
||||
<th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e( 'Select All' ); ?></label></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta1-33132';
|
||||
$wp_version = '4.3-beta1-33133';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue