From 624cb1445d080ef20f4606b7a98e539471deb361 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 16 Dec 2015 19:40:26 +0000 Subject: [PATCH] Docs: Correct a parameter name for the `force_filtered_html_on_import` filter. See #32246. Built from https://develop.svn.wordpress.org/trunk@35973 git-svn-id: http://core.svn.wordpress.org/trunk@35938 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/admin.php b/wp-admin/admin.php index c518099179..2d0809289a 100644 --- a/wp-admin/admin.php +++ b/wp-admin/admin.php @@ -312,7 +312,7 @@ if ( isset($plugin_page) ) { * * @since 3.1.0 * - * @param bool false Whether to force data to be filtered through kses. Default false. + * @param bool $force Whether to force data to be filtered through kses. Default false. */ if ( apply_filters( 'force_filtered_html_on_import', false ) ) { kses_init_filters(); // Always filter imported data with kses on multisite. diff --git a/wp-includes/version.php b/wp-includes/version.php index 1fbf526d29..4f6efaf0f7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35972'; +$wp_version = '4.5-alpha-35973'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.