Index: trunk/phase3/includes/media/Bitmap.php |
— | — | @@ -191,6 +191,12 @@ |
192 | 192 | return new MediaTransformError( 'thumbnail_error', $clientWidth, $clientHeight, $err ); |
193 | 193 | } |
194 | 194 | |
| 195 | + if ( !file_exists( $srcPath ) ) { |
| 196 | + $err = "File seems to be missing: $srcPath"; |
| 197 | + wfDebug( "$err\n" ); |
| 198 | + return new MediaTransformError( 'thumbnail_error', $clientWidth, $clientHeight, $err ); |
| 199 | + } |
| 200 | + |
195 | 201 | $src_image = call_user_func( $loader, $srcPath ); |
196 | 202 | $dst_image = imagecreatetruecolor( $physicalWidth, $physicalHeight ); |
197 | 203 | |