summaryrefslogtreecommitdiffstats
path: root/wp-includes/wpmu-functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/wpmu-functions.php')
-rw-r--r--wp-includes/wpmu-functions.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php
index c184d36..3b9740b 100644
--- a/wp-includes/wpmu-functions.php
+++ b/wp-includes/wpmu-functions.php
@@ -1812,10 +1812,6 @@ Strip class, id and style attributes from post HTML
*/
function wordpressmu_kses( $tags ) {
foreach( $tags as $tag => $attr ) {
- if( is_array( $attr[ 'class' ] ) )
- unset( $attr[ 'class' ] );
- if( is_array( $attr[ 'id' ] ) )
- unset( $attr[ 'id' ] );
if( is_array( $attr[ 'style' ] ) )
unset( $attr[ 'style' ] );
$tags[ $tag ] = $attr;