Ticket #16455: 16455v2.diff
| File 16455v2.diff, 540 bytes (added by MattyRob, 2 years ago) |
|---|
-
wp-includes/load.php
639 639 if ( defined( 'MULTISITE' ) ) 640 640 return MULTISITE; 641 641 642 if ( defined( 'SUBDOMAIN_INSTALL' ) || defined( 'VHOST' ) || defined( 'SUNRISE' ) ) 642 if ( defined('SUBDOMAIN_INSTALL') ) 643 return SUBDOMAIN_INSTALL; 644 645 if ( defined('VHOST') && VHOST == 'yes' ) 643 646 return true; 644 647 648 if ( defined( 'SUNRISE' ) ) 649 return true; 650 645 651 return false; 646 652 } 647 653