Silence is_dir() to avoud warning when upload_tmp_dir is outside open_basedir.
Props dpash fixes #24704 git-svn-id: https://develop.svn.wordpress.org/trunk@24995 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d05c31d063
commit
11d7fe1eaf
@ -1424,7 +1424,7 @@ function get_temp_dir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$temp = ini_get('upload_tmp_dir');
|
$temp = ini_get('upload_tmp_dir');
|
||||||
if ( is_dir( $temp ) && wp_is_writable( $temp ) )
|
if ( @is_dir( $temp ) && wp_is_writable( $temp ) )
|
||||||
return trailingslashit( rtrim( $temp, '\\' ) );
|
return trailingslashit( rtrim( $temp, '\\' ) );
|
||||||
|
|
||||||
$temp = WP_CONTENT_DIR . '/';
|
$temp = WP_CONTENT_DIR . '/';
|
||||||
|
Loading…
Reference in New Issue
Block a user