Make WordPress Core

Changeset 15225


Ignore:
Timestamp:
06/11/2010 04:38:11 PM (14 years ago)
Author:
nacin
Message:

Add a constant for allow_subdirectory_install as conventional plugins have to be disabled on network.php. fixes #13844.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network.php

    r15132 r15225  
    6161    global $wpdb;
    6262    if ( apply_filters( 'allow_subdirectory_install', false ) )
     63        return true;
     64
     65    if ( defined( 'ALLOW_SUBDIRECTORY_INSTALL' ) && ALLOW_SUBDIRECTORY_INSTALL )
    6366        return true;
    6467
Note: See TracChangeset for help on using the changeset viewer.