Administration: Merge similar "file does not exist" messages in plugin and theme editors.
Props ramiy. Fixes #47249. Built from https://develop.svn.wordpress.org/trunk@45431 git-svn-id: http://core.svn.wordpress.org/trunk@45242 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -105,7 +105,7 @@ if ( 'POST' === $_SERVER['REQUEST_METHOD'] ) {
|
||||
$editable_extensions = wp_get_plugin_file_editable_extensions( $plugin );
|
||||
|
||||
if ( ! is_file( $real_file ) ) {
|
||||
wp_die( sprintf( '<p>%s</p>', __( 'No such file exists! Double check the name and try again.' ) ) );
|
||||
wp_die( sprintf( '<p>%s</p>', __( 'File does not exist! Please double check the name and try again.' ) ) );
|
||||
} else {
|
||||
// Get the extension of the file
|
||||
if ( preg_match( '/\.([^.]+)$/', $real_file, $matches ) ) {
|
||||
|
||||
Reference in New Issue
Block a user