Fix bug where sent message was saved in Sent folder even if disabled by user (#1490208)

release-1.0
Aleksander Machniak 10 years ago
parent cbacfb30a9
commit ed32835aba

@ -3,6 +3,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where some valid text in a message was handled as uuencoded attachment
- Fix wrong icon for download button in classic skin
- Fix bug where sent message was saved in Sent folder even if disabled by user (#1490208)
RELEASE 1.0.4
-------------

@ -541,8 +541,10 @@ if ($savedraft) {
$store_target = $drafts_mbox;
}
else if (!$RCMAIL->config->get('no_save_sent_messages')) {
$store_target = rcube_utils::get_input_value('_store_target', rcube_utils::INPUT_POST);
if (!strlen($store_target)) {
if (isset($_POST['_store_target'])) {
$store_target = rcube_utils::get_input_value('_store_target', rcube_utils::INPUT_POST);
}
else {
$store_target = $RCMAIL->config->get('sent_mbox');
}
}

Loading…
Cancel
Save