Changeset 54663 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 10/21/2022 09:10:29 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r54482 r54663 944 944 } 945 945 946 // Account for the previous behavio ur of the function when the $quote_style is not an accepted value.946 // Account for the previous behavior of the function when the $quote_style is not an accepted value. 947 947 if ( empty( $quote_style ) ) { 948 948 $quote_style = ENT_NOQUOTES; … … 1024 1024 } 1025 1025 1026 // Match the previous behavio ur of _wp_specialchars() when the $quote_style is not an accepted value.1026 // Match the previous behavior of _wp_specialchars() when the $quote_style is not an accepted value. 1027 1027 if ( empty( $quote_style ) ) { 1028 1028 $quote_style = ENT_NOQUOTES; … … 4335 4335 * 4336 4336 * NOTE: Since 4.8.3, '%' characters will be replaced with a placeholder string, 4337 * this prevents certain SQLi attacks from taking place. This change in behavio ur4337 * this prevents certain SQLi attacks from taking place. This change in behavior 4338 4338 * may cause issues for code that expects the return value of esc_sql() to be useable 4339 4339 * for other purposes. … … 4355 4355 * 4356 4356 * A number of characters are removed from the URL. If the URL is for displaying 4357 * (the default behavio ur) ampersands are also replaced. The {@see 'clean_url'} filter4357 * (the default behavior) ampersands are also replaced. The {@see 'clean_url'} filter 4358 4358 * is applied to the returned cleaned URL. 4359 4359 *
Note: See TracChangeset
for help on using the changeset viewer.