Make WordPress Core


Ignore:
Timestamp:
01/11/2019 06:39:55 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace violations.

See #45934.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-text-diff-renderer-table.php

    r44129 r44566  
    390390            if ( isset( $orig_matches[ $o ] ) ) {
    391391                $final_matches[ $f ] = 'x';
    392             } // Best match of this orig is already taken?  Must mean this orig is a deleted row.
    393             elseif ( isset( $final_matches[ $f ] ) ) {
     392            } elseif ( isset( $final_matches[ $f ] ) ) {
     393                // Best match of this orig is already taken?  Must mean this orig is a deleted row.
    394394                $orig_matches[ $o ] = 'x';
    395395            }
Note: See TracChangeset for help on using the changeset viewer.