Changeset 54571 for branches/5.0/src/wp-includes/functions.php
- Timestamp:
- 10/17/2022 06:13:25 PM (2 years ago)
- Location:
- branches/5.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0
- Property svn:mergeinfo changed
/trunk merged: 54521-54530,54541
- Property svn:mergeinfo changed
-
branches/5.0/src/wp-includes/functions.php
r46492 r54571 657 657 * Determines whether the publish date of the current post in the loop is different 658 658 * from the publish date of the previous post in the loop. 659 * 659 * 660 660 * For more information on this and similar theme functions, check out 661 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 661 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 662 662 * Conditional Tags} article in the Theme Developer Handbook. 663 * 663 * 664 664 * @since 0.71 665 665 * … … 1352 1352 * 1353 1353 * Checks for the 'siteurl' option for whether WordPress is installed. 1354 * 1354 * 1355 1355 * For more information on this and similar theme functions, check out 1356 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1356 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1357 1357 * Conditional Tags} article in the Theme Developer Handbook. 1358 1358 * … … 2413 2413 if ( $type !== $real_mime ) { 2414 2414 /* 2415 * Everything else including image/* and application/*: 2415 * Everything else including image/* and application/*: 2416 2416 * If the real content type doesn't match the file extension, assume it's dangerous. 2417 2417 */ … … 2422 2422 } 2423 2423 2424 // The mime type must be allowed 2424 // The mime type must be allowed 2425 2425 if ( $type ) { 2426 2426 $allowed = get_allowed_mime_types(); … … 2696 2696 $html = __( 'The link you followed has expired.' ); 2697 2697 if ( wp_get_referer() ) { 2698 $html .= '</p><p>'; 2699 $html .= sprintf( '<a href="%s">%s</a>', 2700 esc_url( remove_query_arg( 'updated', wp_get_referer() ) ), 2698 $wp_http_referer = remove_query_arg( 'updated', wp_get_referer() ); 2699 $wp_http_referer = wp_validate_redirect( esc_url_raw( $wp_http_referer ) ); 2700 $html .= '</p><p>'; 2701 $html .= sprintf( 2702 '<a href="%s">%s</a>', 2703 esc_url( $wp_http_referer ), 2701 2704 __( 'Please try again.' ) 2702 2705 );
Note: See TracChangeset
for help on using the changeset viewer.