Skip to content

Commit

Permalink
Coding Standards: Fix WPCS indentation issue in `wp-admin/includes/cl…
Browse files Browse the repository at this point in the history
…ass-wp-links-list-table.php`.

This was causing a `Generic.WhiteSpace.ScopeIndent.IncorrectExact` error if PHP_CodeSniffer 3.4.1 or newer is installed locally, despite the task passing on Travis.

See #49542.

git-svn-id: https://develop.svn.wordpress.org/trunk@47595 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Apr 17, 2020
1 parent c1aea8f commit 19ca20f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wp-admin/includes/class-wp-links-list-table.php
Expand Up @@ -102,7 +102,7 @@ protected function extra_tablenav( $which ) {
}
?>
<div class="alignleft actions">
<?php
<?php
$dropdown_options = array(
'selected' => $cat_id,
'name' => 'cat_id',
Expand All @@ -117,7 +117,7 @@ protected function extra_tablenav( $which ) {
echo '<label class="screen-reader-text" for="cat_id">' . __( 'Filter by category' ) . '</label>';
wp_dropdown_categories( $dropdown_options );
submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
?>
?>
</div>
<?php
}
Expand Down

0 comments on commit 19ca20f

Please sign in to comment.