mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
* Mail/Sieve: fix vacation notice activated by date does not work if the start date is set in future
This commit is contained in:
parent
4256b589e7
commit
a49cc54bdd
@ -427,8 +427,7 @@ class Script
|
||||
$defaultaddr = $sieve->user . '@' . $sieve->maildomain;
|
||||
array_push($vacation['addresses'],$defaultaddr);
|
||||
}
|
||||
if (($vacation['status'] == 'on' && strlen(trim($vacation['text']))>0)|| $vacation['status'] == 'by_date' &&
|
||||
$vacation['start_date'] <= time() && time() < $vacation['end_date']+24*3600) // +24*3600 to include the end_date day
|
||||
if (($vacation['status'] == 'on' && strlen(trim($vacation['text']))>0)|| $vacation['status'] == 'by_date') // +24*3600 to include the end_date day
|
||||
{
|
||||
$vacation_active = true;
|
||||
if ($vacation['text'])
|
||||
|
Loading…
Reference in New Issue
Block a user