X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/5aa86a9053fb0fa15846bb60aac2fb8fdfff524a..9c2096d803812dacbdf6cf8efe90053e39f00b96:/wp-admin/includes/template.php?ds=sidebyside diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 010c057d..3d0c1162 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -334,7 +334,7 @@ function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single',
'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' ); - wp_editor( '', 'replycontent', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) ); + wp_editor( '', 'replycontent', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings, 'tabindex' => 104 ) ); ?>
@@ -1761,11 +1761,11 @@ final class WP_Internal_Pointers { } public static function pointer_wp330_toolbar() { - $content = '

' . esc_js( __( 'New Feature: Toolbar' ) ). '

'; - $content .= '

' . esc_js( __( 'We’ve combined the admin bar and the old Dashboard header into one persistent toolbar. Hover over the toolbar items to see what’s new.' ) ) . '

'; + $content = '

' . __( 'New Feature: Toolbar' ) . '

'; + $content .= '

' . __( 'We’ve combined the admin bar and the old Dashboard header into one persistent toolbar. Hover over the toolbar items to see what’s new.' ) . '

'; if ( is_multisite() && is_super_admin() ) - $content .= '

' .esc_js( __( 'Network Admin is now located in the My Sites menu.' ) ) . '

'; + $content .= '

' . __( 'Network Admin is now located in the My Sites menu.' ) . '

'; WP_Internal_Pointers::print_js( 'wp330_toolbar', '#wpadminbar', array( 'content' => $content, @@ -1779,8 +1779,8 @@ final class WP_Internal_Pointers { * @since 3.3.0 */ public static function pointer_wp330_media_uploader() { - $content = '

' . esc_js( __( 'Updated Media Uploader' ) ) . '

'; - $content .= '

' . esc_js( __( 'The single media icon now launches the uploader for all file types, and the new drag and drop interface makes uploading a breeze.' ) ) . '

'; + $content = '

' . __( 'Updated Media Uploader' ) . '

'; + $content .= '

' . __( 'The single media icon now launches the uploader for all file types, and the new drag and drop interface makes uploading a breeze.' ) . '

'; WP_Internal_Pointers::print_js( 'wp330_media_uploader', '#content-add_media', array( 'content' => $content, @@ -1794,8 +1794,8 @@ final class WP_Internal_Pointers { * @since 3.3.0 */ public static function pointer_wp330_saving_widgets() { - $content = '

' . esc_js( __( 'New Feature: Saving Widgets' ) ) . '

'; - $content .= '

' . esc_js( __( 'If you change your mind and revert to your previous theme, we’ll put the widgets back the way you had them.' ) ) . '

'; + $content = '

' . __( 'New Feature: Saving Widgets' ) . '

'; + $content .= '

' . __( 'If you change your mind and revert to your previous theme, we’ll put the widgets back the way you had them.' ). '

'; WP_Internal_Pointers::print_js( 'wp330_saving_widgets', '#message2', array( 'content' => $content,