Changeset 2965

Show
Ignore:
Timestamp:
10/25/05 23:44:27 (3 years ago)
Author:
matt
Message:

LiteSpeed? support everything Apache does

Files:

Legend:

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

    r2849 r2965  
    3535 
    3636// Server detection 
    37 $is_apache = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? 1 : 0; 
     37$is_apache = ( strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') || strstr($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') ) ? 1 : 0; 
    3838$is_IIS = strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') ? 1 : 0; 
    3939