Skip to content

Commit

Permalink
Coding Standards: Fix WPCS issues in [49258].
Browse files Browse the repository at this point in the history
See #46619.

git-svn-id: https://develop.svn.wordpress.org/trunk@49259 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Oct 20, 2020
1 parent 0d2249c commit a1663ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -94,7 +94,7 @@ public function column_email( $item ) {
$complete_request_markup .= '</span>';
}

if ( ! empty ( $complete_request_markup ) ) {
if ( ! empty( $complete_request_markup ) ) {
$row_actions['complete-request'] = $complete_request_markup;
}

Expand Down
Expand Up @@ -100,7 +100,7 @@ public function column_email( $item ) {
$complete_request_markup .= '</span>';
}

if ( ! empty ( $complete_request_markup ) ) {
if ( ! empty( $complete_request_markup ) ) {
$row_actions['complete-request'] = $complete_request_markup;
}

Expand Down

0 comments on commit a1663ce

Please sign in to comment.