Silence a PHP Warning in Safe Mode from get_temp_dir(). Props ocean90. Fixes #20778

git-svn-id: https://develop.svn.wordpress.org/trunk@22082 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2012-09-29 01:22:25 +00:00
parent 7e3e82dd32
commit 693fccb99c
1 changed files with 2 additions and 2 deletions

View File

@ -1391,7 +1391,7 @@ function get_temp_dir() {
if ( function_exists('sys_get_temp_dir') ) {
$temp = sys_get_temp_dir();
if ( is_dir( $temp ) && ( $is_win ? win_is_writable( $temp ) : @is_writable( $temp ) ) ) {
if ( @is_dir( $temp ) && ( $is_win ? win_is_writable( $temp ) : @is_writable( $temp ) ) ) {
return trailingslashit( $temp );
}
}
@ -3758,4 +3758,4 @@ function _device_can_upload() {
*/
function wp_checkdate( $month, $day, $year, $source_date ) {
return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date );
}
}