diff options
author | alecpl <alec@alec.pl> | 2012-04-27 07:24:24 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-27 07:24:24 +0000 |
commit | 77799d87ba05a8e96d604693dcfa003b5835fe2b (patch) | |
tree | a4392e9c12020be497e87c41a48c93da95cc737f /program/steps | |
parent | cba69dd9777bf6c8d6ab5368da7e349e4cf60832 (diff) |
- Applied some fixes from trunk
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/sendmail.inc | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 25eb0596e..b5d383422 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -688,17 +688,19 @@ if ($store_target) { unlink($mailbody_file); $mailbody_file = null; } + } - // raise error if saving failed - if (!$saved) { - raise_error(array('code' => 800, 'type' => 'imap', - 'file' => __FILE__, 'line' => __LINE__, - 'message' => "Could not save message in $store_target"), TRUE, FALSE); + // raise error if saving failed + if (!$saved) { + raise_error(array('code' => 800, 'type' => 'imap', + 'file' => __FILE__, 'line' => __LINE__, + 'message' => "Could not save message in $store_target"), TRUE, FALSE); - if ($savedraft) { - $OUTPUT->show_message('errorsaving', 'error'); - $OUTPUT->send('iframe'); - } + if ($savedraft) { + $OUTPUT->show_message('errorsaving', 'error'); + // start the auto-save timer again + $OUTPUT->command('auto_save_start'); + $OUTPUT->send('iframe'); } } |