Make WordPress Core


Ignore:
Timestamp:
01/15/2010 10:25:40 PM (15 years ago)
Author:
ryan
Message:

Coding style cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/load.php

    r12732 r12734  
    272272
    273273function 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') )
    276276                    die( __( 'The blog you have requested is not installed properly. Please contact the system administrator.' ) ); // have to die here ~ Mark
    277             }
    278277    } elseif ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
    279278        if ( defined('WP_SITEURL') )
     
    330329    }
    331330    unset($current_plugins);
    332 
    333331}
    334332
Note: See TracChangeset for help on using the changeset viewer.