- Timestamp:
- 02/20/2020 05:04:42 PM (5 years ago)
- Location:
- branches/3.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.9
-
branches/3.9/tests/phpunit/tests/functions/deprecated.php
r25409 r47329 149 149 wp_save_image_file( $file, $img, 'image/jpeg', 1 ); 150 150 imagedestroy( $img ); 151 @unlink($file);151 unlink( $file ); 152 152 153 153 // Check if the arg was deprecated … … 170 170 wp_save_image_file( $file, $img, 'image/jpeg', 1 ); 171 171 unset( $img ); 172 @unlink($file);172 unlink( $file ); 173 173 174 174 // Check if the arg was deprecated
Note: See TracChangeset
for help on using the changeset viewer.