1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-12 04:23:24 +02:00

Merge pull request #848 from FELDSAM-INC/feldsam/fix-sync-job-edit

Fixed syncjob saving on edit
This commit is contained in:
André Peters 2018-01-01 09:19:43 +01:00 committed by GitHub
commit c288473354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1413,7 +1413,7 @@ function mailbox($_action, $_type, $_data = null, $attr = null) {
$subfolder2 = (isset($_data['subfolder2'])) ? $_data['subfolder2'] : $is_now['subfolder2'];
$enc1 = (!empty($_data['enc1'])) ? $_data['enc1'] : $is_now['enc1'];
$mins_interval = (!empty($_data['mins_interval'])) ? $_data['mins_interval'] : $is_now['mins_interval'];
$exclude = (!empty($_data['exclude'])) ? $_data['exclude'] : '';
$exclude = (!empty($_data['exclude'])) ? $_data['exclude'] : $is_now['exclude'];
$maxage = (isset($_data['maxage']) && $_data['maxage'] != "") ? intval($_data['maxage']) : $is_now['maxage'];
}
else {