From ae21b1884dea106274db33b5cf1246338c211db5 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 12 Sep 2014 05:51:17 +0000 Subject: [PATCH] kses: Add colgroup. props collinsinternet. fixes #29433. Built from https://develop.svn.wordpress.org/trunk@29740 git-svn-id: http://core.svn.wordpress.org/trunk@29514 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/kses.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wp-includes/kses.php b/wp-includes/kses.php index 0b552955e2..7399e9cf87 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -119,6 +119,14 @@ if ( ! CUSTOM_TAGS ) { 'valign' => true, 'width' => true, ), + 'colgroup' => array( + 'align' => true, + 'char' => true, + 'charoff' => true, + 'span' => true, + 'valign' => true, + 'width' => true, + ), 'del' => array( 'datetime' => true, ),