mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Mail: Fix mail vacation notice widget did not hide
This commit is contained in:
parent
fa2375b1a6
commit
09ecd29a91
@ -4774,13 +4774,15 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
|
||||
$dtfrmt = $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'];
|
||||
$refreshData['vacationnotice'] = lang('Vacation notice is active');
|
||||
$refreshData['vacationrange'] = ($vacation['status']=='by_date'? Api\DateTime::server2user($vacation['start_date'],$dtfrmt,true).($vacation['end_date']>$vacation['start_date']?'->'.Api\DateTime::server2user($vacation['end_date']+ 24*3600-1,$dtfrmt,true):''):'');
|
||||
if ($vacation['status'] == 'by_date' && $vacation['end_date']+ 24*3600 < time())$refreshData = '';
|
||||
if($vacation['status'] == 'by_date' && $vacation['end_date'] + 24 * 3600 < time())
|
||||
{
|
||||
$refreshData = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($vacation==false)
|
||||
{
|
||||
$refreshData['vacationnotice'] = '';
|
||||
$refreshData['vacationrange'] = '';
|
||||
$refreshData = null;
|
||||
}
|
||||
$response = Api\Json\Response::get();
|
||||
$response->call('app.mail.mail_refreshVacationNotice',$refreshData);
|
||||
|
Loading…
Reference in New Issue
Block a user