diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-27 21:58:06 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-27 21:58:06 -0800 |
commit | cfbbf9ef606094868ccbd25ccf65e1a6f610528b (patch) | |
tree | 8366d6885eacf52b0e49c12778c636e3281612f1 /modules/exif/helpers | |
parent | 212633d05a5a8abb77a744a69c61d6e3051b73c5 (diff) |
Convert __toString() to use (string) cast instead.
Diffstat (limited to 'modules/exif/helpers')
-rw-r--r-- | modules/exif/helpers/exif_task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exif/helpers/exif_task.php b/modules/exif/helpers/exif_task.php index 27352643..90869630 100644 --- a/modules/exif/helpers/exif_task.php +++ b/modules/exif/helpers/exif_task.php @@ -82,7 +82,7 @@ class exif_task_Core { $task->done = true; $task->state = "error"; $task->status = $e->getMessage(); - $task->log($e->__toString()); + $task->log((string)$e); } } } |