diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-15 15:32:02 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-15 15:32:02 +0200 |
commit | fb2f825cd95677a2ede38e0a2ea99b6823841d74 (patch) | |
tree | 3455473791c3328817ea6f499262f608ce5842ea /program/steps/mail/viewsource.inc | |
parent | c086978f6a91eacb339fd2976202fca9dad2ef32 (diff) |
Fix line separator in exported messages (#1488603)
Diffstat (limited to 'program/steps/mail/viewsource.inc')
-rw-r--r-- | program/steps/mail/viewsource.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/viewsource.inc b/program/steps/mail/viewsource.inc index 59ccb386e..c560d7d41 100644 --- a/program/steps/mail/viewsource.inc +++ b/program/steps/mail/viewsource.inc @@ -44,7 +44,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) header("Content-Disposition: attachment; filename=\"$filename\""); } - $RCMAIL->storage->print_raw_body($uid); + $RCMAIL->storage->print_raw_body($uid, empty($_GET['_save'])); } else { |