Changeset 54753 for branches/6.1/src/wp-includes/functions.php
- Timestamp:
- 11/05/2022 09:59:35 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.1/src/wp-includes/functions.php
r54752 r54753 3568 3568 get_bloginfo( 'name' ) 3569 3569 ); 3570 3570 $html = $title; 3571 $html .= '</p><p>'; 3571 3572 $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; 3572 3573 $html = $title; 3574 $html .= '</p><p>'; 3575 $html .= sprintf( 3573 $html .= sprintf( 3576 3574 /* translators: %s: Logout URL. */ 3577 3575 __( 'Do you really want to <a href="%s">log out</a>?' ), … … 3580 3578 } else { 3581 3579 $html = __( 'The link you followed has expired.' ); 3582 3583 3580 if ( wp_get_referer() ) { 3584 3581 $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() ); 3585 3582 $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) ); 3586 3587 3583 $html .= '</p><p>'; 3588 3584 $html .= sprintf(
Note: See TracChangeset
for help on using the changeset viewer.