Silence is_dir() to avoud warning when upload_tmp_dir is outside open_basedir.
Props dpash fixes #24704 git-svn-id: http://core.svn.wordpress.org/trunk@24995 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3a5f483e14
commit
acc0aec2b0
|
@ -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