From 44f82fcc70631b8435d9b7a1f6c2953d96e78cd2 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 19:31:30 +0000 Subject: [PATCH] Docs: Correct a parameter name for the `allow_subdirectory_install` filter. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@35971 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/network.php b/src/wp-admin/includes/network.php index 7f30c99d07..ec8729b94c 100644 --- a/src/wp-admin/includes/network.php +++ b/src/wp-admin/includes/network.php @@ -56,7 +56,7 @@ function allow_subdirectory_install() { * * @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 ) ) return true;