From: Ruslan U. <rx...@ph...> - 2009-08-01 12:30:33
|
Author: rxu Date: Sat Aug 1 13:13:16 2009 New Revision: 9904 Log: Addition to r9899 for bug #48695 - trying to create thumbnail for broken jpeg image Authorised by: AcydBurn Modified: branches/phpBB-3_0_0/phpBB/includes/functions_posting.php Modified: branches/phpBB-3_0_0/phpBB/includes/functions_posting.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/functions_posting.php (original) --- branches/phpBB-3_0_0/phpBB/includes/functions_posting.php Sat Aug 1 13:13:16 2009 *************** *** 684,689 **** --- 684,690 ---- break; case IMG_JPG: + @ini_set('gd.jpeg_ignore_warning', 1); $image = @imagecreatefromjpeg($source); break; |