diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-07 21:40:43 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-07 21:41:28 -0700 |
commit | a563dcdfb32d34d4cd22c5c75fa7f02f7b7b08d9 (patch) | |
tree | 7c1e624405869937ba82b027873f9358258965e2 /modules/gallery/helpers | |
parent | be860f5c4a1ea3eb3ac02cf1a7e38793c65f7c3b (diff) |
Convert the missing movie placeholder over to a JPG for consistency. Fixes #1828.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/graphics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/graphics.php b/modules/gallery/helpers/graphics.php index 27ee124a..c19fbe6d 100644 --- a/modules/gallery/helpers/graphics.php +++ b/modules/gallery/helpers/graphics.php @@ -161,7 +161,7 @@ class graphics_Core { movie::extract_frame($input_file, $output_file); } catch (Exception $e) { // Assuming this is MISSING_FFMPEG for now - copy(MODPATH . "gallery/images/missing_movie.png", $output_file); + copy(MODPATH . "gallery/images/missing_movie.jpg", $output_file); } $working_file = $output_file; } else { |