Make WordPress Core


Ignore:
Timestamp:
07/01/2019 12:50:14 PM (6 years ago)
Author:
pento
Message:

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

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php

    r43571 r45583  
    9494        if ( ! $s && wp_is_large_network() ) {
    9595            if ( ! isset( $_REQUEST['orderby'] ) ) {
    96                 $_GET['orderby'] = $_REQUEST['orderby'] = '';
     96                $_GET['orderby']     = '';
     97                $_REQUEST['orderby'] = '';
    9798            }
    9899            if ( ! isset( $_REQUEST['order'] ) ) {
    99                 $_GET['order'] = $_REQUEST['order'] = 'DESC';
     100                $_GET['order']     = 'DESC';
     101                $_REQUEST['order'] = 'DESC';
    100102            }
    101103        }
Note: See TracChangeset for help on using the changeset viewer.