Make WordPress Core


Ignore:
Timestamp:
10/07/2019 03:16:44 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Fix WPCS issues in wp-includes/ms-deprecated.php.

Props itowhid06.
Fixes #48237.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-deprecated.php

    r45734 r46420  
    275275        wp_die( __( 'A variable mismatch has been detected.' ), __( 'Sorry, you are not allowed to view this item.' ), 400 );
    276276    } elseif ( isset( $_POST['ref'] ) ) {
    277         $ref = $_POST[ 'ref' ];
     277        $ref = $_POST['ref'];
    278278    } elseif ( isset( $_GET['ref'] ) ) {
    279         $ref = $_GET[ 'ref' ];
     279        $ref = $_GET['ref'];
    280280    }
    281281
Note: See TracChangeset for help on using the changeset viewer.