diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 33344f3153..7b01568ad4 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -5709,6 +5709,10 @@ function iis7_supports_permalinks() { * @return int 0 means nothing is wrong, greater than 0 means something was wrong. */ function validate_file( $file, $allowed_files = array() ) { + if ( ! is_scalar( $file ) || '' === $file ) { + return 0; + } + // `../` on its own is not allowed: if ( '../' === $file ) { return 1;