Changeset 31751
- Timestamp:
- 03/12/2015 01:08:40 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r31749 r31751 2915 2915 wp_send_json_error( $status ); 2916 2916 } else if ( is_null( $result ) ) { 2917 $status['errorCode'] = __( 'unable_to_connect_to_filesystem' );2917 $status['errorCode'] = 'unable_to_connect_to_filesystem'; 2918 2918 $status['error'] = __( 'Unable to connect to the filesystem. Please confirm your credentials.' ); 2919 2919 wp_send_json_error( $status ); … … 2965 2965 wp_send_json_error( $status ); 2966 2966 } else if ( is_bool( $result ) && ! $result ) { 2967 $status['errorCode'] = __( 'unable_to_connect_to_filesystem' );2967 $status['errorCode'] = 'unable_to_connect_to_filesystem'; 2968 2968 $status['error'] = __( 'Unable to connect to the filesystem. Please confirm your credentials.' ); 2969 2969 wp_send_json_error( $status );
Note: See TracChangeset
for help on using the changeset viewer.