mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-16 18:31:26 +01:00
fix infinite recursion when checking for Windows timezones without "Standard Time" prefix
This commit is contained in:
parent
b493063e40
commit
b2d3d6fced
@ -114,7 +114,7 @@ class calendar_timezones
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// check for a Windows timezone without "Standard Time" postfix
|
// 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');
|
$id = self::tz2id($tzid.' Standard Time');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user