X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/d3b1ea255664edd2deef17f900a655613d20820d..312084b5d95c21feb519ff03decf948420e1f6fa:/wp-includes/shortcodes.php diff --git a/wp-includes/shortcodes.php b/wp-includes/shortcodes.php index 6ced1816..bad91c14 100644 --- a/wp-includes/shortcodes.php +++ b/wp-includes/shortcodes.php @@ -175,6 +175,7 @@ function get_shortcode_regex() { $tagnames = array_keys($shortcode_tags); $tagregexp = join( '|', array_map('preg_quote', $tagnames) ); + // WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcodes() return '(.?)\[('.$tagregexp.')\b(.*?)(?:(\/))?\](?:(.+?)\[\/\2\])?(.?)'; } @@ -289,7 +290,7 @@ function strip_shortcodes( $content ) { $pattern = get_shortcode_regex(); - return preg_replace('/'.$pattern.'/s', '', $content); + return preg_replace('/'.$pattern.'/s', '$1$6', $content); } add_filter('the_content', 'do_shortcode', 11); // AFTER wpautop()