public
Description: Rails plugin for uploading images as resources, with support for resizing, text stamping, and other special effects.
Homepage: http://wiki.github.com/Squeegy/fleximage
Clone URL: git://github.com/Squeegy/fleximage.git
widen error trapping a bit
Squeegy (author)
Mon Aug 11 13:24:06 -0700 2008
commit  a8c55bd650a1462a8862303eedcce58c12844f69
tree    80bda91bacc8ac6a99a45c980a2b962145fdf2cb
parent  be70e1871971af5bd77a7e6eca71e7e11303096d
...
356
357
358
359
 
360
361
362
...
356
357
358
 
359
360
361
362
0
@@ -356,7 +356,7 @@ module Fleximage
0
         end
0
         
0
       rescue Magick::ImageMagickError => e
0
-        if e.to_s =~ /unable to open file/
0
+        if e.to_s =~ /unable to open (file|image)/
0
           master_image_not_found
0
         else
0
           raise e

Comments