Changeset 22082 for trunk/wp-includes/functions.php
- Timestamp:
- 09/29/2012 01:22:25 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r22038 r22082 1392 1392 if ( function_exists('sys_get_temp_dir') ) { 1393 1393 $temp = sys_get_temp_dir(); 1394 if ( is_dir( $temp ) && ( $is_win ? win_is_writable( $temp ) : @is_writable( $temp ) ) ) {1394 if ( @is_dir( $temp ) && ( $is_win ? win_is_writable( $temp ) : @is_writable( $temp ) ) ) { 1395 1395 return trailingslashit( $temp ); 1396 1396 }
Note: See TracChangeset
for help on using the changeset viewer.