Skip to content

Commit

Permalink
This should be case insensitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 24, 2015
1 parent ebf752d commit 927791c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nag/lib/Nag.php
Expand Up @@ -913,7 +913,7 @@ public static function formatOrganizer($organizer, $link = false)
return;
}
$rfc = new Horde_Mail_Rfc822();
$list = $rfc->parseAddressList(str_replace('mailto:', '', $organizer), array('limit' => 1));
$list = $rfc->parseAddressList(str_ireplace('mailto:', '', $organizer), array('limit' => 1));
if (empty($list)) {
return;
}
Expand Down

0 comments on commit 927791c

Please sign in to comment.