From b041e9b1893ec4c0ae54d582194fc57e9f42e649 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 19:35:20 +0000 Subject: [PATCH] Docs: Correct a parameter name for the `validate_current_theme` filter. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@35972 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php index 63a9f81c1d..0194462e54 100644 --- a/src/wp-includes/theme.php +++ b/src/wp-includes/theme.php @@ -771,7 +771,7 @@ function validate_current_theme() { * * @since 2.7.0 * - * @param bool true Validation flag to check the current theme. + * @param bool $validate Validation flag to check the current theme. */ if ( wp_installing() || ! apply_filters( 'validate_current_theme', true ) ) return true;