fix typo preventing ics parsing

This commit is contained in:
Klaus Leithoff 2015-01-27 13:10:48 +00:00
parent aab42f722a
commit 69d093e617

View File

@ -2661,7 +2661,7 @@ class calendar_ical extends calendar_boupdate
break;
case 'ORGANIZER':
$event['organizer'] = $attributes['value']; // no egw field, but needed in AS
if (strtlower(substr($event['organizer'],0,7)) == 'mailto:')
if (strtolower(substr($event['organizer'],0,7)) == 'mailto:')
{
$event['organizer'] = substr($event['organizer'],7);
}