Ticket #16325: 16325.diff
File 16325.diff, 437 bytes (added by , 14 years ago) |
---|
-
wp-includes/kses.php
1404 1404 if ( strpos( $css_item, ':' ) === false ) { 1405 1405 $found = true; 1406 1406 } else { 1407 $parts = split( ':', $css_item );1407 $parts = explode( ':', $css_item ); 1408 1408 if ( in_array( trim( $parts[0] ), $allowed_attr ) ) 1409 1409 $found = true; 1410 1410 }