Make WordPress Core


Ignore:
Timestamp:
11/05/2022 09:59:35 PM (13 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Revert [54752] from the 6.1 branch.

This was supposed to be committed to trunk.

See #56791.

File:
1 edited

Legend:

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

    r54752 r54753  
    35683568            get_bloginfo( 'name' )
    35693569        );
    3570 
     3570        $html        = $title;
     3571        $html       .= '</p><p>';
    35713572        $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
    3572 
    3573         $html  = $title;
    3574         $html .= '</p><p>';
    3575         $html .= sprintf(
     3573        $html       .= sprintf(
    35763574            /* translators: %s: Logout URL. */
    35773575            __( 'Do you really want to <a href="%s">log out</a>?' ),
     
    35803578    } else {
    35813579        $html = __( 'The link you followed has expired.' );
    3582 
    35833580        if ( wp_get_referer() ) {
    35843581            $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() );
    35853582            $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) );
    3586 
    35873583            $html .= '</p><p>';
    35883584            $html .= sprintf(
Note: See TracChangeset for help on using the changeset viewer.