Commit 17ddb701 authored by Joe Hoyle's avatar Joe Hoyle
Browse files

Remove wpthumb hack

parent e7a33813
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -25,13 +25,3 @@ add_filter( 'wp_image_editors', function( $editors ) {

	return $editors;
}, 9 );
 No newline at end of file

/**
 * WP Thumb compatibility. WP Thumb supports storing references to images
 * in the database, so it doesn't need to stat() the files. As we 
 * are storing the files on S3, we need this functionality as statting is
 * too slow.
 */
add_filter( 'wpthumb_save_location', function() {
	return 'WP_Thumb_Save_Location_Database';
});
 No newline at end of file