Make WordPress Core

Changeset 25171


Ignore:
Timestamp:
08/29/2013 07:30:46 PM (11 years ago)
Author:
nacin
Message:

Avoid validating wildcard hostnames in populate_network() when multisite is already activated.

props jeremyfelt.
fixes #25182.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/schema.php

    r25038 r25171  
    948948
    949949        flush_rewrite_rules();
    950     }
    951 
    952     if ( $subdomain_install ) {
     950
     951        if ( ! $subdomain_install )
     952            return true;
     953
    953954        $vhost_ok = false;
    954955        $errstr = '';
Note: See TracChangeset for help on using the changeset viewer.