Make WordPress Core

Changeset 47530


Ignore:
Timestamp:
03/30/2020 01:30:42 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Filesystem API: Correct punctuation in request_filesystem_credentials() error message.

Props mayankmajeji, kharisblank.
Fixes #49724.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/file.php

    r47457 r47530  
    20952095
    20962096    if ( $error ) {
    2097         $error_string = __( '<strong>Error</strong>: There was an error connecting to the server, Please verify the settings are correct.' );
     2097        $error_string = __( '<strong>Error</strong>: There was an error connecting to the server. Please verify the settings are correct.' );
    20982098        if ( is_wp_error( $error ) ) {
    20992099            $error_string = esc_html( $error->get_error_message() );
Note: See TracChangeset for help on using the changeset viewer.