Make WordPress Core

Changeset 63027


Ignore:
Timestamp:
08/05/2026 12:59:21 PM (6 weeks ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment of assignment operators.

This resolves a WPCS warning:

Equals sign not aligned with surrounding assignments

Follow-up to [62590], [62838].

Props Soean.
See #64897.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-users-list-table.php

    r62838 r63027  
    636636                                        $row .= $this->row_actions( $actions );
    637637                                }
    638                                 $tag = ( $primary === $column_name ) ? 'th' : 'td';
     638                                $tag  = ( $primary === $column_name ) ? 'th' : 'td';
    639639                                $row .= "</$tag>";
    640640                        }
  • trunk/src/wp-includes/pluggable.php

    r62704 r63027  
    23772377                $switched_locale = switch_to_user_locale( $user_id );
    23782378
    2379                 $message  = __( 'To set your password, visit the following address:' ) . "\r\n\r\n";
     2379                $message = __( 'To set your password, visit the following address:' ) . "\r\n\r\n";
    23802380
    23812381                /*
Note: See TracChangeset for help on using the changeset viewer.