From fa9b71e423ecdd806535d87ddc3532b5e0aa1679 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 20:10:25 +0000 Subject: [PATCH] Docs: Document the default value for the `$validate` parameter in the `validate_current_theme` hook docs. See #32246. Built from https://develop.svn.wordpress.org/trunk@35976 git-svn-id: http://core.svn.wordpress.org/trunk@35941 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 0194462e54..b2543639bc 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -771,7 +771,7 @@ function validate_current_theme() { * * @since 2.7.0 * - * @param bool $validate Validation flag to check the current theme. + * @param bool $validate Whether to validate the current theme. Default true. */ if ( wp_installing() || ! apply_filters( 'validate_current_theme', true ) ) return true; diff --git a/wp-includes/version.php b/wp-includes/version.php index bf2e7624a1..4b912560cf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35975'; +$wp_version = '4.5-alpha-35976'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.