From c85f10781c0075d00c66587d4b200d92b45d2083 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 28 Mar 2008 15:23:09 +0000 Subject: [PATCH] Shortcode quotes were getting texturized, which can cause a bit of chaos. Fixes #6436. git-svn-id: https://develop.svn.wordpress.org/trunk@7561 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/shortcodes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/shortcodes.php b/wp-includes/shortcodes.php index b4f582ca55..b90879c30c 100644 --- a/wp-includes/shortcodes.php +++ b/wp-includes/shortcodes.php @@ -129,6 +129,6 @@ function shortcode_atts($pairs, $atts) { return $out; } -add_filter('the_content', 'do_shortcode'); +add_filter( 'the_content', 'do_shortcode', 9 ); ?>