forked from extern/egroupware
Calendar: Fix notifications not getting sent
This commit is contained in:
parent
3e371ea51f
commit
f17b82e3d9
@ -1039,7 +1039,14 @@ class calendar_boupdate extends calendar_bo
|
|||||||
|
|
||||||
// event is in user-time of current user, now we need to calculate the tz-difference to the notified user and take it into account
|
// event is in user-time of current user, now we need to calculate the tz-difference to the notified user and take it into account
|
||||||
if (!isset($part_prefs['common']['tz'])) $part_prefs['common']['tz'] = $GLOBALS['egw_info']['server']['server_timezone'];
|
if (!isset($part_prefs['common']['tz'])) $part_prefs['common']['tz'] = $GLOBALS['egw_info']['server']['server_timezone'];
|
||||||
$timezone = new DateTimeZone($part_prefs['common']['tz']);
|
try
|
||||||
|
{
|
||||||
|
$timezone = new DateTimeZone($part_prefs['common']['tz']);
|
||||||
|
}
|
||||||
|
catch(Exception $e)
|
||||||
|
{
|
||||||
|
$timezone = new DateTimeZone($GLOBALS['egw_info']['server']['server_timezone']);
|
||||||
|
}
|
||||||
$timeformat = $part_prefs['common']['timeformat'];
|
$timeformat = $part_prefs['common']['timeformat'];
|
||||||
switch($timeformat)
|
switch($timeformat)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user