diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-07-21 00:06:11 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-07-21 00:06:11 -0600 |
commit | 7f9e71d8cdcf99267adc2b4a6332e379a0fca0fc (patch) | |
tree | 1ee75c57e9caf682799b9fc7e19f009d27c15f08 /modules/gallery/helpers/task.php | |
parent | 329b6ce28ce0424303fece0fa0f542a0f1cb39ae (diff) | |
parent | d7814f37cb2194098bd8aa3887bd830033200e8b (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/task.php')
-rw-r--r-- | modules/gallery/helpers/task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/task.php b/modules/gallery/helpers/task.php index 6a9f63c2..352fe522 100644 --- a/modules/gallery/helpers/task.php +++ b/modules/gallery/helpers/task.php @@ -87,7 +87,7 @@ class task_Core { $task->log($e->__toString()); $task->state = "error"; $task->done = true; - $task->status = $e->getMessage(); + $task->status = substr($e->getMessage(), 0, 255); $task->save(); } |