Make WordPress Core

Ticket #31766: 31766.01.patch

File 31766.01.patch, 476 bytes (added by johnjamesjacoby, 9 years ago)

Move the word-count enqueue into the self::$has_tinymce check

  • wp-includes/class-wp-editor.php

     
    726726        }
    727727
    728728        public static function enqueue_scripts() {
    729                 wp_enqueue_script('word-count');
    730729
    731                 if ( self::$has_tinymce )
     730                if ( self::$has_tinymce ) {
     731                        wp_enqueue_script('word-count');
    732732                        wp_enqueue_script('editor');
     733                }
    733734
    734735                if ( self::$has_quicktags ) {
    735736                        wp_enqueue_script( 'quicktags' );