mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 23:29:31 +01:00
fix infinite recursion when checking for Windows timezones without "Standard Time" prefix
This commit is contained in:
parent
96b6ef5c8c
commit
f5e266f2c6
@ -114,7 +114,7 @@ class calendar_timezones
|
||||
}
|
||||
}
|
||||
// check for a Windows timezone without "Standard Time" postfix
|
||||
if (!isset($id) && strpos($tzid, '/') === false)
|
||||
if (!isset($id) && stripos($tzid, ' Standard Time') === false)
|
||||
{
|
||||
$id = self::tz2id($tzid.' Standard Time');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user