Make WordPress Core


Ignore:
Timestamp:
09/24/2018 03:22:01 PM (6 years ago)
Author:
flixos90
Message:

Multisite: Fix coding standard errors after [43654].

See #41333.

File:
1 edited

Legend:

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

    r43654 r43655  
    5959function get_blogaddress_by_name( $blogname ) {
    6060    if ( is_subdomain_install() ) {
    61         if ( $blogname == 'main' ) {
     61        if ( 'main' === $blogname ) {
    6262            $blogname = 'www';
    6363        }
     
    179179    $blog_id = (int) $blog_id;
    180180
    181     $all     = $get_all == true ? '' : 'short';
     181    $all     = $get_all ? '' : 'short';
    182182    $details = wp_cache_get( $blog_id . $all, 'blog-details' );
    183183
    184184    if ( $details ) {
    185185        if ( ! is_object( $details ) ) {
    186             if ( $details == -1 ) {
     186            if ( -1 == $details ) {
    187187                return false;
    188188            } else {
     
    204204        if ( $details ) {
    205205            if ( ! is_object( $details ) ) {
    206                 if ( $details == -1 ) {
     206                if ( -1 == $details ) {
    207207                    return false;
    208208                } else {
     
    11761176    }
    11771177
    1178     $users = get_users( array(
    1179         'blog_id' => $site->id,
    1180         'fields'  => 'ids',
    1181     ) );
     1178    $users = get_users(
     1179        array(
     1180            'blog_id' => $site->id,
     1181            'fields'  => 'ids',
     1182        )
     1183    );
    11821184
    11831185    // Remove users from the site.
     
    12301232        $dir = $stack[ $index ];
    12311233
    1232         // phpcs:disable Generic.PHP.NoSilencedErrors.Discouraged
     1234        // phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
    12331235        $dh = @opendir( $dir );
    12341236        if ( $dh ) {
     
    12601262    }
    12611263
    1262     // phpcs:enable Generic.PHP.NoSilencedErrors.Discouraged
     1264    // phpcs:enable WordPress.PHP.NoSilencedErrors.Discouraged
    12631265    if ( $switch ) {
    12641266        restore_current_blog();
Note: See TracChangeset for help on using the changeset viewer.