Make WordPress Core


Ignore:
Timestamp:
11/05/2022 05:28:48 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment in various files.

This fixes Equals sign not aligned with surrounding statements WPCS warnings, so that the output of composer format is clean.

Follow-up to [54445], [54476], [54494], [54522], [54652], [54687].

See #56791.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/6.1/src/wp-includes/functions.php

    r54713 r54752  
    35683568            get_bloginfo( 'name' )
    35693569        );
    3570         $html        = $title;
    3571         $html       .= '</p><p>';
     3570
    35723571        $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
    3573         $html       .= sprintf(
     3572
     3573        $html  = $title;
     3574        $html .= '</p><p>';
     3575        $html .= sprintf(
    35743576            /* translators: %s: Logout URL. */
    35753577            __( 'Do you really want to <a href="%s">log out</a>?' ),
     
    35783580    } else {
    35793581        $html = __( 'The link you followed has expired.' );
     3582
    35803583        if ( wp_get_referer() ) {
    35813584            $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() );
    35823585            $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) );
     3586
    35833587            $html .= '</p><p>';
    35843588            $html .= sprintf(
Note: See TracChangeset for help on using the changeset viewer.