Make WordPress Core

Changeset 25722


Ignore:
Timestamp:
10/07/2013 11:42:43 PM (11 years ago)
Author:
DrewAPicture
Message:

Inline documentation for hooks in wp-admin/network.php.

Props johnafish.
Fixes #25502.

File:
1 edited

Legend:

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

    r25616 r25722  
    5959}
    6060/**
    61  * Allow subdirectory install
     61 * Allow subdirectory install.
    6262 *
    6363 * @since 3.0.0
     
    6666function allow_subdirectory_install() {
    6767    global $wpdb;
     68        /**
     69         * Filter whether to enable the subdirectory install feature in Multisite.
     70         *
     71         * @since 3.0.0
     72         *
     73         * @param bool true Whether to enable the subdirectory install feature in Multisite. Default is false.
     74         */
    6875    if ( apply_filters( 'allow_subdirectory_install', false ) )
    6976        return true;
Note: See TracChangeset for help on using the changeset viewer.