From 4a6d77c8e5fa846165cae3bb266298f284b43e15 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 19:32:26 +0000 Subject: [PATCH] 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 --- wp-admin/includes/network.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 7f30c99d07..ec8729b94c 100644 --- a/wp-admin/includes/network.php +++ b/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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 2864eb3a2e..49330e6504 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.