Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (7 years ago)
Author:
pento
Message:

General: Fix some precision alignment formatting warnings.

The WPCS WordPress.WhiteSpace.PrecisionAlignment rule throws warnings for a bunch of code that will likely cause issues for wpcbf. Fixing these manually beforehand gives us better auto-fixed results later.

See #41057.

File:
1 edited

Legend:

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

    r38721 r42228  
    5050        } else {
    5151            /**
    52               * Fires after a new user has been created via the network user-new.php page.
    53               *
    54               * @since 4.4.0
    55               *
    56               * @param int $user_id ID of the newly created user.
    57               */
     52             * Fires after a new user has been created via the network user-new.php page.
     53             *
     54             * @since 4.4.0
     55             *
     56             * @param int $user_id ID of the newly created user.
     57             */
    5858            do_action( 'network_user_new_created_user', $user_id );
    5959            wp_redirect( add_query_arg( array('update' => 'added', 'user_id' => $user_id ), 'user-new.php' ) );
Note: See TracChangeset for help on using the changeset viewer.