Changes from trunk/wp-settings.php at r11268 to branches/2.8/wp-settings.php at r11661
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-settings.php
r11268 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 … … 317 317 require_once(ABSPATH . WPINC . '/kses.php'); 318 318 require_once(ABSPATH . WPINC . '/pluggable.php'); 319 require_once(ABSPATH . WPINC . '/formatting.php'); 319 320 wp_redirect($link); 320 321 die(); // have to die here ~ Mark … … 529 530 require (ABSPATH . WPINC . '/vars.php'); 530 531 532 // make taxonomies available to plugins and themes 533 // @plugin authors: warning: this gets registered again on the init hook 534 create_initial_taxonomies(); 535 531 536 // Check for hacks file if the option is enabled 532 537 if ( get_option('hack_file') ) {
Note: See TracChangeset
for help on using the changeset viewer.