Simplify error in validate_file_to_edit().
props MattyRob for initial patch. fixes #25924. git-svn-id: https://develop.svn.wordpress.org/trunk@27219 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
84c8009c50
commit
4cfcdabdd8
@ -177,13 +177,13 @@ function validate_file_to_edit( $file, $allowed_files = '' ) {
|
|||||||
|
|
||||||
switch ( $code ) {
|
switch ( $code ) {
|
||||||
case 1 :
|
case 1 :
|
||||||
wp_die( __('Sorry, can’t edit files with “..” in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in.' ));
|
wp_die( __( 'Sorry, that file cannot be edited.' ) );
|
||||||
|
|
||||||
//case 2 :
|
//case 2 :
|
||||||
// wp_die( __('Sorry, can’t call files with their real path.' ));
|
// wp_die( __('Sorry, can’t call files with their real path.' ));
|
||||||
|
|
||||||
case 3 :
|
case 3 :
|
||||||
wp_die( __('Sorry, that file cannot be edited.' ));
|
wp_die( __( 'Sorry, that file cannot be edited.' ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user