diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-07 21:17:51 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-07 21:17:58 -0700 |
commit | 2a4903c0e724adadf0a7f1cf97c147595914bf51 (patch) | |
tree | dd636d1c9d21962fe7e1b7eee05878c35cc17772 /modules/gallery/helpers/gallery_graphics.php | |
parent | 42463582bd5fc896e3b623313082531aeabf4720 (diff) |
Fix typo in call to Kohana_Exception::getMessage, thanks to Serge.
Fixes #1780.
Diffstat (limited to 'modules/gallery/helpers/gallery_graphics.php')
-rw-r--r-- | modules/gallery/helpers/gallery_graphics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/gallery_graphics.php b/modules/gallery/helpers/gallery_graphics.php index 02f628a1..d2b92c87 100644 --- a/modules/gallery/helpers/gallery_graphics.php +++ b/modules/gallery/helpers/gallery_graphics.php @@ -126,7 +126,7 @@ class gallery_graphics_Core { module::event("graphics_composite_completed", $input_file, $output_file, $options, $item); } catch (ErrorException $e) { - Kohana_Log::add("error", $e->get_message()); + Kohana_Log::add("error", $e->getMessage()); } } } |