diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2011-08-11 19:07:45 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2011-08-11 19:07:45 +0000 | 
| commit | d8dffba94277c2179a59eb72d6927a5bdb879648 (patch) | |
| tree | d377bd9d2e1e277ca93cc7fc17c73edae5286706 /modules/gallery/helpers/graphics.php | |
| parent | 2ec6e8d61b63ac5d3fc5cbd6761360539cd9d5e9 (diff) | |
| parent | a5b1972bbe9676479886ca94bb23f09407a87561 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/graphics.php')
| -rw-r--r-- | modules/gallery/helpers/graphics.php | 10 | 
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/gallery/helpers/graphics.php b/modules/gallery/helpers/graphics.php index 39c87fbd..3548faa1 100644 --- a/modules/gallery/helpers/graphics.php +++ b/modules/gallery/helpers/graphics.php @@ -170,14 +170,8 @@ class graphics_Core {          foreach (self::_get_rules($target) as $rule) {            $args = array($working_file, $output_file, unserialize($rule->args), $item); -          try { -            call_user_func_array($rule->operation, $args); -            $working_file = $output_file; -          } catch (Exception $e) { -            // Ignore this rule and move on. -            Kohana_Log::add("error", "Caught exception processing image: {$item->title}\n" . -                            $e->getMessage() . "\n" . $e->getTraceAsString()); -          } +          call_user_func_array($rule->operation, $args); +          $working_file = $output_file;          }        }  | 
