diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-06-16 20:26:49 -0700 |
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-06-16 20:26:49 -0700 |
| commit | 06ed45f0cb867057eefd5a45d04cba6b8be41411 (patch) | |
| tree | f4ec5ebff47b9264734a06a611172277acb3c9a1 /modules/gallery/helpers/movie.php | |
| parent | be226b9baa8ce21431e35c32277fda2e8c94a216 (diff) | |
| parent | baea5e3a1b5a258269accb7ee53f5167607833c2 (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/movie.php')
| -rw-r--r-- | modules/gallery/helpers/movie.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/gallery/helpers/movie.php b/modules/gallery/helpers/movie.php index 1d1d29d1..28c15d81 100644 --- a/modules/gallery/helpers/movie.php +++ b/modules/gallery/helpers/movie.php @@ -53,7 +53,12 @@ class movie_Core { throw new Exception("@todo NAME_CANNOT_END_IN_PERIOD"); } - $movie_info = movie::getmoviesize($filename); + try { + $movie_info = movie::getmoviesize($filename); + } catch (Exception $e) { + // Assuming this is MISSING_FFMPEG for now + $movie_info = getimagesize(MODPATH . "gallery/images/missing_movie.png"); + } // Force an extension onto the name $pi = pathinfo($filename); |
