We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4172074 commit 881191dCopy full SHA for 881191d
1 file changed
src/wp-includes/kses.php
@@ -1818,10 +1818,13 @@ function wp_kses_no_null( $content, $options = null ) {
1818
*
1819
* @since 1.0.0
1820
1821
+ * @deprecated 6.9.0 Not necessary since the `e` PCRE modifier was removed in PHP 7.0.
1822
+ *
1823
* @param string $content String to strip slashes from.
1824
* @return string Fixed string with quoted slashes.
1825
*/
1826
function wp_kses_stripslashes( $content ) {
1827
+ _deprecated_function( __FUNCTION__, '6.9.0' );
1828
return preg_replace( '%\\\\"%', '"', $content );
1829
}
1830
0 commit comments