- Timestamp:
- 02/21/2020 01:05:39 PM (6 years ago)
- Location:
- branches/3.8
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
tests/phpunit/tests/functions/deprecated.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
- Property svn:mergeinfo changed
-
branches/3.8/tests/phpunit/tests/functions/deprecated.php
r25409 r47338 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.