Make WordPress Core

Changeset 5063


Ignore:
Timestamp:
03/20/2007 03:18:44 AM (18 years ago)
Author:
ryan
Message:

Fix typo. Props rob1n. fixes #4000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/vars.php

    r5032 r5063  
    2020} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false) {
    2121    $is_gecko = true;
    22 } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win')) {
     22} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false) {
    2323    $is_winIE = true;
    2424} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) {
Note: See TracChangeset for help on using the changeset viewer.