diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 67c74c866..7fe8fa7ea 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -85,13 +85,13 @@ echo "
- +

-comment_content, 'content', 'newcomment_author_url', false); ?> +comment_content, 'content', 'newcomment_author_url', false, 4); ?>
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 9d416142a..c762d6914 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -918,7 +918,7 @@ function wp_default_editor() { return apply_filters( 'wp_default_editor', $r ); // filter } -function the_editor($content, $id = 'content', $prev_id = 'title', $media_buttons = true) { +function the_editor($content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2) { $rows = get_option('default_post_edit_rows'); if (($rows < 3) || ($rows > 100)) $rows = 12; @@ -960,7 +960,7 @@ function the_editor($content, $id = 'content', $prev_id = 'title', $media_button \n"); + $the_editor = apply_filters('the_editor', "
\n"); $the_editor_content = apply_filters('the_editor_content', $content); printf($the_editor, $the_editor_content);