Changeset 48108 for trunk/src/wp-admin/includes/network.php
- Timestamp:
- 06/20/2020 12:21:30 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/network.php
r48059 r48108 53 53 function allow_subdirectory_install() { 54 54 global $wpdb; 55 /** 56 * Filters whether to enable the subdirectory installation feature in Multisite. 57 * 58 * @since 3.0.0 59 * 60 * @param bool $allow Whether to enable the subdirectory installation feature in Multisite. Default is false. 61 */ 55 56 /** 57 * Filters whether to enable the subdirectory installation feature in Multisite. 58 * 59 * @since 3.0.0 60 * 61 * @param bool $allow Whether to enable the subdirectory installation feature in Multisite. 62 * Default false. 63 */ 62 64 if ( apply_filters( 'allow_subdirectory_install', false ) ) { 63 65 return true; … … 98 100 * Prints step 1 for Network installation process. 99 101 * 100 * @todo Realistically, step 1 should be a welcome screen explaining what a Network is and such. Navigating to Tools > Network 101 * should not be a sudden "Welcome to a new install process! Fill this out and click here." See also contextual help todo. 102 * @todo Realistically, step 1 should be a welcome screen explaining what a Network is and such. 103 * Navigating to Tools > Network should not be a sudden "Welcome to a new install process! 104 * Fill this out and click here." See also contextual help todo. 102 105 * 103 106 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.