From a419491688a55a18bb89775cbda6e2f5e01557f2 Mon Sep 17 00:00:00 2001 From: matt 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: http://svn.automattic.com/wordpress/trunk@7561 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 b4f582ca5..b90879c30 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 ); ?>