Ticket #37165: 37165.diff
File 37165.diff, 1.1 KB (added by , 5 years ago) |
---|
-
src/wp-admin/includes/class-wp-list-table.php
459 459 if ( empty( $this->_actions ) ) 460 460 return; 461 461 462 echo '<div class="alignleft actions bulkactions">'; 462 463 echo '<label for="bulk-action-selector-' . esc_attr( $which ) . '" class="screen-reader-text">' . __( 'Select bulk action' ) . '</label>'; 463 464 echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr( $which ) . "\">\n"; 464 465 echo '<option value="-1">' . __( 'Bulk Actions' ) . "</option>\n"; … … 472 473 echo "</select>\n"; 473 474 474 475 submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two" ) ); 476 echo '</div>'; 475 477 echo "\n"; 476 478 } 477 479 … … 1179 1181 <div class="tablenav <?php echo esc_attr( $which ); ?>"> 1180 1182 1181 1183 <?php if ( $this->has_items() ): ?> 1182 <div class="alignleft actions bulkactions">1183 1184 <?php $this->bulk_actions( $which ); ?> 1184 </div>1185 1185 <?php endif; 1186 1186 $this->extra_tablenav( $which ); 1187 1187 $this->pagination( $which );