Merge pull request #51 from nicorac/master

Bug in free/busy request handling (master)
This commit is contained in:
Nathan Gray 2018-12-19 15:33:43 -07:00 committed by GitHub
commit a4872300b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 8 deletions

View File

@ -869,12 +869,11 @@ class calendar_groupdav extends Api\CalDAV\Handler
array_shift($content_type);
foreach ($content_type as $attribute)
{
trim($attribute);
list($key, $value) = explode('=', $attribute);
switch (strtolower($key))
switch (strtolower(trim($key)))
{
case 'charset':
$charset = strtoupper(substr($value,1,-1));
$charset = strtoupper(trim($value));
}
}
}
@ -1078,12 +1077,11 @@ class calendar_groupdav extends Api\CalDAV\Handler
array_shift($content_type);
foreach ($content_type as $attribute)
{
trim($attribute);
list($key, $value) = explode('=', $attribute);
switch (strtolower($key))
switch (strtolower(trim($key)))
{
case 'charset':
$charset = strtoupper(substr($value,1,-1));
$charset = strtoupper(trim($value));
}
}
}

View File

@ -3300,9 +3300,9 @@ class calendar_ical extends calendar_boupdate
// sort by start datetime
uasort($events, function($a, $b)
{
$diff = $a['start'] < $b['start'];
$diff = $a['start'] - $b['start'];
return !$diff ? 0 : ($diff < 0 ? -1 : 1);
return $diff == 0 ? 0 : ($diff < 0 ? -1 : 1);
});
$fbdata = array();