Changeset 11661
- Timestamp:
- 06/28/2009 12:44:06 AM (16 years ago)
- File:
-
- 1 edited
-
branches/2.8/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-settings.php
r11623 r11661 61 61 $blog_id = 1; 62 62 63 // Fix for IIS , which doesn't set REQUEST_URI64 if ( empty( $_SERVER['REQUEST_URI'] ) ) {63 // Fix for IIS when running with PHP ISAPI 64 if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) { 65 65 66 66 // IIS Mod-Rewrite
Note: See TracChangeset
for help on using the changeset viewer.