Docs: Correct a parameter name for the `allow_subdirectory_install` filter.

See #32246.
Built from https://develop.svn.wordpress.org/trunk@35971


git-svn-id: http://core.svn.wordpress.org/trunk@35936 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Pascal Birchler 2015-12-16 19:32:26 +00:00
parent 2e35e20010
commit 4a6d77c8e5
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ function allow_subdirectory_install() {
* *
* @since 3.0.0 * @since 3.0.0
* *
* @param bool true Whether to enable the subdirectory install feature in Multisite. Default is false. * @param bool $allow Whether to enable the subdirectory install feature in Multisite. Default is false.
*/ */
if ( apply_filters( 'allow_subdirectory_install', false ) ) if ( apply_filters( 'allow_subdirectory_install', false ) )
return true; return true;

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-35970'; $wp_version = '4.5-alpha-35971';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.