Make WordPress Core


Ignore:
Timestamp:
10/17/2022 05:43:54 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 3.8 branch.

  • Posts, Post types: Apply KSES to post-by-email content,
  • General: Validate host on "Are you sure?" screen,
  • Posts, Post types: Remove emails from post-by-email logs,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Mail: Reset PHPMailer properties between use,
  • Widgets: Escape RSS error messages for display.

Merges [54521], [54522], [54523], [54525], [54527], [54529], [54541] to the 3.8 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, davidbaumwald, tykoted, matveb, talldanwp.

Location:
branches/3.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8

  • branches/3.8/src/wp-includes/functions.php

    r46504 r54547  
    22182218        } else {
    22192219                $html = __( 'Are you sure you want to do this?' );
    2220                 if ( wp_get_referer() )
    2221                         $html .= "</p><p><a href='" . esc_url( remove_query_arg( 'updated', wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";
     2220                if ( wp_get_referer() ) {
     2221                        $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() );
     2222                        $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) );
     2223                        $html           .= '</p><p>';
     2224                        $html           .= sprintf(
     2225                                '<a href="%s">%s</a>',
     2226                                esc_url( $wp_http_referer ),
     2227                                __( 'Please try again.' )
     2228                        );
     2229                }
    22222230        }
    22232231
Note: See TracChangeset for help on using the changeset viewer.