From bf8c4ee5c670b7d9165f315007c47435c0b71399 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sun, 1 Mar 2020 10:33:04 +0000 Subject: [PATCH] Docs: Correct the parameter documentation of the `request_filesystem_credentials` filter. See #48303 Built from https://develop.svn.wordpress.org/trunk@47396 git-svn-id: http://core.svn.wordpress.org/trunk@47183 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/file.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index 007b88f9a0..ac663176c6 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -1987,8 +1987,8 @@ function request_filesystem_credentials( $form_post, $type = '', $error = false, * or an error object. * @param string $context Full path to the directory that is tested for * being writable. - * @param bool $allow_relaxed_file_ownership Whether to allow Group/World writable. * @param array $extra_fields Extra POST fields. + * @param bool $allow_relaxed_file_ownership Whether to allow Group/World writable. */ $req_cred = apply_filters( 'request_filesystem_credentials', '', $form_post, $type, $error, $context, $extra_fields, $allow_relaxed_file_ownership ); if ( '' !== $req_cred ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index efc4e7de93..a0fdfd8799 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-beta3-47395'; +$wp_version = '5.4-beta3-47396'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.