Clarify that 'html' refers to the Text editor tab, see #20993

git-svn-id: http://core.svn.wordpress.org/trunk@21218 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2012-07-05 20:28:01 +00:00
parent c7029bb742
commit e7b985db6f
3 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ var switchEditors = {
this.go(id, mode); this.go(id, mode);
}, },
go: function(id, mode) { // mode can be 'html', 'tmce', or 'toggle' go: function(id, mode) { // mode can be 'html', 'tmce', or 'toggle'; 'html' is used for the "Text" editor tab.
id = id || 'content'; id = id || 'content';
mode = mode || 'toggle'; mode = mode || 'toggle';

View File

@ -76,6 +76,7 @@ final class _WP_Editors {
if ( self::$this_quicktags && self::$this_tinymce ) { if ( self::$this_quicktags && self::$this_tinymce ) {
$switch_class = 'html-active'; $switch_class = 'html-active';
// 'html' and 'switch-html' are used for the "Text" editor tab.
if ( 'html' == wp_default_editor() ) { if ( 'html' == wp_default_editor() ) {
add_filter('the_editor_content', 'wp_htmledit_pre'); add_filter('the_editor_content', 'wp_htmledit_pre');
} else { } else {

View File

@ -1767,7 +1767,7 @@ function user_can_richedit() {
* Find out which editor should be displayed by default. * Find out which editor should be displayed by default.
* *
* Works out which of the two editors to display as the current editor for a * Works out which of the two editors to display as the current editor for a
* user. * user. The 'html' setting is for the "Text" editor tab.
* *
* @since 2.5.0 * @since 2.5.0
* *