Silence a PHP Warning in Safe Mode from get_temp_dir(). Props ocean90. Fixes #20778
git-svn-id: http://core.svn.wordpress.org/trunk@22082 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b821458a03
commit
19c7ca7729
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue