fix interchanged allocation

This commit is contained in:
Tobias Sekan 2019-10-16 13:56:11 +02:00 committed by GitHub
parent 199fb3be0f
commit 741627897e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1553,7 +1553,7 @@ class ActionComm extends CommonObject
else
{
// use start date as fall-back to avoid import erros on empty end date
$datestart = $dateend;
$dateend = $datestart;
}
$dateend=$this->db->jdate($obj->datep2)-(empty($conf->global->AGENDA_EXPORT_FIX_TZ)?0:($conf->global->AGENDA_EXPORT_FIX_TZ*3600));