Summary | case sensitive comparison of email address |
Queue | Kronolith |
Queue Version | 2.2 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | chuck (at) horde (dot) org |
Requester | aloyse.gilbert (at) gmail (dot) com |
Created | 06/04/2008 (6238 days ago) |
Due | |
Updated | 06/04/2008 (6238 days ago) |
Assigned | 06/04/2008 (6238 days ago) |
Resolved | 06/04/2008 (6238 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Chuck Hagenbuch
Taken from
State ⇒ Resolved
loop though. :)
http://cvs.horde.org/diff.php/kronolith/docs/CHANGES?r1=1.444&r2=1.445&ty=u
http://cvs.horde.org/diff.php/kronolith/lib/api.php?r1=1.227&r2=1.228&ty=u
State ⇒ Assigned
Assigned to
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ case sensitive comparison of email address
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
comparison of the email address resulting in an error for updataing
calendar enrties:
the line 1206:
if (is_null($sender) || $sender == $attendee) {
should be
if (is_null($sender) || String::lower($sender) == $attendee) {