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:
Ryan Boren 2013-08-06 17:39:33 +00:00
parent d05c31d063
commit 11d7fe1eaf
1 changed files with 1 additions and 1 deletions

View File

@ -1424,7 +1424,7 @@ function get_temp_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, '\\' ) );
$temp = WP_CONTENT_DIR . '/';