Changeset 12734 for trunk/wp-includes/load.php
- Timestamp:
- 01/15/2010 10:25:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/load.php
r12732 r12734 272 272 273 273 function wp_not_installed() { 274 if ( is_multisite() ) {275 if ( !is_blog_installed() && !defined('WP_INSTALLING') ) {274 if ( is_multisite() ) { 275 if ( !is_blog_installed() && !defined('WP_INSTALLING') ) 276 276 die( __( 'The blog you have requested is not installed properly. Please contact the system administrator.' ) ); // have to die here ~ Mark 277 }278 277 } elseif ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) { 279 278 if ( defined('WP_SITEURL') ) … … 330 329 } 331 330 unset($current_plugins); 332 333 331 } 334 332
Note: See TracChangeset
for help on using the changeset viewer.