From ba57b0141c377f0e66ac1ea95f44f6d1b8d5851d Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sun, 1 Mar 2020 10:31:31 +0000 Subject: [PATCH] Docs: Correct the parameter documentation of the `request_filesystem_credentials` filter. See #48303 git-svn-id: https://develop.svn.wordpress.org/trunk@47396 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php index 007b88f9a0..ac663176c6 100644 --- a/src/wp-admin/includes/file.php +++ b/src/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 ) {