From 8d9d4817a32b097343708e389312af1c673dd5d3 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@15383 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 ) );