Make WordPress Core


Ignore:
Timestamp:
08/31/2016 03:21:04 PM (8 years ago)
Author:
wonderboymusic
Message:

General: revert [38467], wp_is_IE() should not exist.

See #37699.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-press-this.php

    r38467 r38468  
    11881188     *
    11891189     * @global WP_Locale $wp_locale
     1190     * @global bool      $is_IE
    11901191     */
    11911192    public function html() {
     
    12271228        add_filter( 'mce_css', array( $this, 'add_editor_style' ) );
    12281229
    1229         if ( wp_is_IE() ) {
     1230        if ( ! empty( $GLOBALS['is_IE'] ) ) {
    12301231            @header( 'X-UA-Compatible: IE=edge' );
    12311232        }
Note: See TracChangeset for help on using the changeset viewer.