Make WordPress Core

Changeset 43655 for trunk


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

Multisite: Fix coding standard errors after [43654].

See #41333.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpcs.xml.dist

    r43641 r43655  
    8484    <rule ref="WordPress.DB.PreparedSQL.NotPrepared">
    8585        <exclude-pattern>/tests/phpunit/tests/admin/includesSchema\.php</exclude-pattern>
     86        <exclude-pattern>/tests/phpunit/tests/multisite/site\.php</exclude-pattern>
    8687    </rule>
    8788
  • 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();
  • trunk/tests/phpunit/tests/multisite/site.php

    r43654 r43655  
    6161
    6262            remove_action( 'wp_initialize_site', 'wp_initialize_site', 10 );
    63             self::$uninitialized_site_id = wp_insert_site( array(
    64                 'domain'  => 'uninitialized.org',
    65                 'path'    => '/',
    66                 'site_id' => self::$network_ids['make.wordpress.org/'],
    67             ) );
     63            self::$uninitialized_site_id = wp_insert_site(
     64                array(
     65                    'domain'  => 'uninitialized.org',
     66                    'path'    => '/',
     67                    'site_id' => self::$network_ids['make.wordpress.org/'],
     68                )
     69            );
    6870            add_action( 'wp_initialize_site', 'wp_initialize_site', 10, 2 );
    6971        }
     
    23072309                )
    23082310            );
    2309             $passed_args = $this->wp_initialize_site_args;
    2310 
     2311
     2312            $passed_args                   = $this->wp_initialize_site_args;
    23112313            $this->wp_initialize_site_args = null;
    23122314
Note: See TracChangeset for help on using the changeset viewer.