Make WordPress Core


Ignore:
Timestamp:
03/13/2005 04:36:09 PM (20 years ago)
Author:
ryan
Message:

Introducing wp_redirect(), first cut. http://mosquito.wordpress.org/view.php?id=592 Props: Toby Simmons

File:
1 edited

Legend:

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

    r2240 r2436  
    3636// Server detection
    3737$is_apache = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? 1 : 0;
     38$is_IIS = strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') ? 1 : 0;
    3839
    3940// if the config file does not provide the smilies array, let's define it here
Note: See TracChangeset for help on using the changeset viewer.