Skip to content

Commit

Permalink
Merge from master: must be case insensitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 10, 2014
1 parent d2e84ea commit fb7c5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kronolith/lib/Api.php
Expand Up @@ -1193,7 +1193,7 @@ public function updateAttendee($response, $sender = null)
$attendee = Horde_String::lower($addr_ob->bare_address);
$name = $addr_ob->personal;
} else {
$attendee = str_replace('mailto:', '', Horde_String::lower($attendee));
$attendee = str_ireplace('mailto:', '', Horde_String::lower($attendee));
$name = isset($atparms[$index]['CN']) ? $atparms[$index]['CN'] : null;
}
if ($event->hasAttendee($attendee)) {
Expand Down

0 comments on commit fb7c5cc

Please sign in to comment.