Ticket #28506: 28506.diff
File 28506.diff, 436 bytes (added by , 10 years ago) |
---|
-
wp-includes/kses.php
997 997 function wp_kses_no_null($string) { 998 998 $string = preg_replace('/\0+/', '', $string); 999 999 $string = preg_replace('/(\\\\0)+/', '', $string); 1000 $string = preg_replace('/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/', '', $string); 1000 1001 1001 1002 return $string; 1002 1003 }