Changeset 48722
- Timestamp:
- 08/04/2020 03:55:25 PM (4 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r48693 r48722 398 398 399 399 $this->comment_status_dropdown( $comment_type ); 400 400 401 /** 401 402 * Fires just before the Filter submit button for comment types. … … 407 408 $output = ob_get_clean(); 408 409 409 if ( ! empty( $output ) && $ this->has_items()) {410 if ( ! empty( $output ) && $has_items ) { 410 411 echo $output; 411 submit_button( esc_html__( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );412 submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 412 413 } 413 414 } -
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r47595 r48722 116 116 117 117 echo '<label class="screen-reader-text" for="cat_id">' . __( 'Filter by category' ) . '</label>'; 118 118 119 wp_dropdown_categories( $dropdown_options ); 120 119 121 submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 120 122 ?> -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r48595 r48722 333 333 */ 334 334 do_action( 'restrict_manage_sites', $which ); 335 335 336 $output = ob_get_clean(); 337 336 338 if ( ! empty( $output ) ) { 337 339 echo $output;
Note: See TracChangeset
for help on using the changeset viewer.