Changeset 22863 for trunk/wp-includes/class-wp-image-editor-gd.php
- Timestamp:
- 11/27/2012 02:36:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-image-editor-gd.php
r22817 r22863 37 37 if ( ! extension_loaded('gd') || ! function_exists('gd_info') ) 38 38 return false; 39 40 // On some setups GD library does not provide imagerotate() - Ticket #11536 41 if ( isset( $args['methods'] ) && 42 in_array( 'rotate', $args['methods'] ) && 43 ! function_exists('imagerotate') ){ 44 45 return false; 46 } 39 47 40 48 return true;
Note: See TracChangeset
for help on using the changeset viewer.