Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

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

    r44566 r45590  
    401401
    402402        // Stores rows and blanks for each column.
    403         $orig_rows  = $orig_rows_copy = array_keys( $orig_matches );
    404         $final_rows = array_keys( $final_matches );
     403        $orig_rows      = array_keys( $orig_matches );
     404        $orig_rows_copy = $orig_rows;
     405        $final_rows     = array_keys( $final_matches );
    405406
    406407        // Interleaves rows with blanks to keep matches aligned.
Note: See TracChangeset for help on using the changeset viewer.