(395 . 7)(395 . 7)
40 */
41 function wp_kses_split($string, $allowed_html, $allowed_protocols) {
42 return preg_replace_callback('%((<!--.*?(-->|$))|(<[^>]*(>|$)|>))%',
43 function($match) {
44 function($match) use ($allowed_html, $allowed_protocols) {
45 return wp_kses_split2($match[1], $allowed_html, $allowed_protocols);
46 }, $string);
47 }