mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:33 +01:00
patch from christian binder
563: set delimiter to ";" instead of ","
This commit is contained in:
parent
5d3f5ef2e6
commit
9fa275421b
@ -554,7 +554,7 @@ class Horde_iCalendar {
|
||||
case 'EXDATE':
|
||||
$values = array();
|
||||
$dates = array();
|
||||
preg_match_all('/,([^,]*)/', ',' . $value, $values);
|
||||
preg_match_all('/;([^;]*)/', ';' . $value, $values);
|
||||
|
||||
foreach ($values[1] as $value) {
|
||||
if (isset($params['VALUE'])) {
|
||||
|
Loading…
Reference in New Issue
Block a user