Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:51:22 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use Yoda conditions in some wp-admin files.

Props subrataemfluence, marcio-zebedeu, bookdude13, 1naveengiri, alishankhan.
Fixes #44365, #48455.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/user-new.php

    r47198 r47218  
    6464    $username       = $user_details->user_login;
    6565    $user_id        = $user_details->ID;
    66     if ( $username != null && array_key_exists( $blog_id, get_blogs_of_user( $user_id ) ) ) {
     66    if ( null != $username && array_key_exists( $blog_id, get_blogs_of_user( $user_id ) ) ) {
    6767        $redirect = add_query_arg( array( 'update' => 'addexisting' ), 'user-new.php' );
    6868    } else {
Note: See TracChangeset for help on using the changeset viewer.