From 936b65887c5ac8f6a411d4f817bf53a11524630c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 30 Mar 2020 01:30:42 +0000 Subject: [PATCH] Filesystem API: Correct punctuation in `request_filesystem_credentials()` error message. Props mayankmajeji, kharisblank. Fixes #49724. git-svn-id: https://develop.svn.wordpress.org/trunk@47530 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 5b11a07f6d..be67f664f3 100644 --- a/src/wp-admin/includes/file.php +++ b/src/wp-admin/includes/file.php @@ -2094,7 +2094,7 @@ function request_filesystem_credentials( $form_post, $type = '', $error = false, $connection_type = isset( $credentials['connection_type'] ) ? $credentials['connection_type'] : ''; if ( $error ) { - $error_string = __( 'Error: There was an error connecting to the server, Please verify the settings are correct.' ); + $error_string = __( 'Error: There was an error connecting to the server. Please verify the settings are correct.' ); if ( is_wp_error( $error ) ) { $error_string = esc_html( $error->get_error_message() ); }