Changes in trunk/wp-includes/vars.php [16905:18036]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/vars.php
r16905 r18036 48 48 $is_lynx = true; 49 49 } elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'chrome') !== false ) { 50 $is_chrome = true; 50 if ( stripos( $_SERVER['HTTP_USER_AGENT'], 'chromeframe' ) !== false ) { 51 if ( $is_chrome = apply_filters( 'use_google_chrome_frame', is_admin() ) ) 52 header( 'X-UA-Compatible: chrome=1' ); 53 $is_winIE = ! $is_chrome; 54 } else { 55 $is_chrome = true; 56 } 51 57 } elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'safari') !== false ) { 52 58 $is_safari = true;
Note: See TracChangeset
for help on using the changeset viewer.