From 55e16aa98a82375d9c43776b480f3ebc4a8d7a80 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 13 Oct 2015 17:18:25 +0000 Subject: [PATCH] KSES: have you ever heard of the `` HTML tag? Same. http://www.w3schools.com/tags/tag_bdo.asp Adds unit test. Props iandunn. Fixes #34063. Built from https://develop.svn.wordpress.org/trunk@35141 git-svn-id: http://core.svn.wordpress.org/trunk@35106 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/kses.php | 3 +++ wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/kses.php b/wp-includes/kses.php index 9504f48679..d34608b89f 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -97,6 +97,9 @@ if ( ! CUSTOM_TAGS ) { 'src' => true, ), 'b' => array(), + 'bdo' => array( + 'dir' => true, + ), 'big' => array(), 'blockquote' => array( 'cite' => true, diff --git a/wp-includes/version.php b/wp-includes/version.php index f0f726177b..38a93c5db6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35140'; +$wp_version = '4.4-alpha-35141'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.