Changeset 29120 for trunk/tests/phpunit/tests/functions/deprecated.php
- Timestamp:
- 07/12/2014 07:08:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/deprecated.php
r25409 r29120 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.