Make WordPress Core


Ignore:
Timestamp:
11/22/2011 09:35:08 PM (12 years ago)
Author:
azaozz
Message:

Admin bar: add class for IE9 and fix background color in search, props SergeyBiryukov, see #19151

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-admin-bar.php

    r19398 r19407  
    151151            elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE 8' ) )
    152152                $class .= ' ie8';
     153            elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE 9' ) )
     154                $class .= ' ie9';
    153155        } elseif ( $is_iphone ) {
    154156            $class .= ' mobile';
Note: See TracChangeset for help on using the changeset viewer.