From 44e222d5ae46d932ad4c5fb7077ad23e413c9f47 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 12 Jul 2010 14:30:39 +0000 Subject: [PATCH] =?UTF-8?q?Add=20equal=20sign=20to=20blacklist.=20Props=20?= =?UTF-8?q?P=C3=A1draic=20Brady.=20for=203.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.automattic.com/wordpress/trunk@15383 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/kses.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/kses.php b/wp-includes/kses.php index 9c2380b3ea..4a0a67901c 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -1373,7 +1373,7 @@ function safecss_filter_attr( $css, $deprecated = '' ) { $css = wp_kses_no_null($css); $css = str_replace(array("\n","\r","\t"), '', $css); - if ( preg_match( '%[\\(&}]|/\*%', $css ) ) // remove any inline css containing \ ( & } or comments + if ( preg_match( '%[\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments return ''; $css_array = explode( ';', trim( $css ) );