From 0ccbc9acddad29acfbbcc795579b3079894f6c3e Mon Sep 17 00:00:00 2001 From: azaozz Date: Sun, 25 Dec 2011 17:27:39 +0000 Subject: [PATCH] Editor: fix invalid nested lists, fix tabbing - Tab goes to Publish/Update, Shift + Tab goes back to Title, fixes #18261 git-svn-id: http://svn.automattic.com/wordpress/trunk@19631 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-editor.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index a272eb7ef..fbaed627a 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -301,10 +301,11 @@ final class _WP_Editors { 'convert_urls' => false, 'remove_linebreaks' => true, 'gecko_spellcheck' => true, + 'fix_list_elements' => true, 'keep_styles' => false, 'entities' => '38,amp,60,lt,62,gt', 'accessibility_focus' => true, - 'tabfocus_elements' => 'major-publishing-actions', + 'tabfocus_elements' => 'title,publish', 'media_strict' => false, 'paste_remove_styles' => true, 'paste_remove_spans' => true,