From 4855f36478192ee7a79b24339d1e50db26a183b3 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Wed, 26 Nov 2014 23:04:21 +0000 Subject: [PATCH] Editor: fix warnings in class-wp-editor.php, see #30453. Built from https://develop.svn.wordpress.org/trunk@30583 git-svn-id: http://core.svn.wordpress.org/trunk@30573 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-editor.php | 29 +++++++++++++++-------------- wp-includes/version.php | 2 +- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index f0b34ca0ce..78de4ad000 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -76,20 +76,21 @@ final class _WP_Editors { $settings = apply_filters( 'wp_editor_settings', $settings, $editor_id ); $set = wp_parse_args( $settings, array( - 'wpautop' => true, - 'media_buttons' => true, - 'default_editor' => '', - 'drag_drop_upload' => false, - 'textarea_name' => $editor_id, - 'textarea_rows' => 20, - 'tabindex' => '', - 'tabfocus_elements' => ':prev,:next', - 'editor_css' => '', - 'editor_class' => '', - 'teeny' => false, - 'dfw' => false, - 'tinymce' => true, - 'quicktags' => true + 'wpautop' => true, + 'media_buttons' => true, + 'default_editor' => '', + 'drag_drop_upload' => false, + 'textarea_name' => $editor_id, + 'textarea_rows' => 20, + 'tabindex' => '', + 'tabfocus_elements' => ':prev,:next', + 'editor_css' => '', + 'editor_class' => '', + 'teeny' => false, + 'dfw' => false, + '_content_editor_dfw' => false, + 'tinymce' => true, + 'quicktags' => true ) ); self::$this_tinymce = ( $set['tinymce'] && user_can_richedit() ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 63b25ee9a0..a63f5cb8cd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30582'; +$wp_version = '4.1-beta2-30583'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.