6.0.0-alpha14
7/3/25

[#6833] case sensitive comparison of email address
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

History
06/04/2008 06:02:26 PM Chuck Hagenbuch Comment #4
Assigned to Chuck Hagenbuch
Taken from Horde DevelopersHorde Developers
State ⇒ Resolved
Reply to this comment
Committed, thanks! I moved the String::lower for $sender outside the 
loop though. :)
06/04/2008 03:02:44 PM Chuck Hagenbuch Comment #2
State ⇒ Assigned
Assigned to Horde DevelopersHorde Developers
Reply to this comment
Makes sense to me.
06/04/2008 10:39:52 AM aloyse (dot) gilbert (at) gmail (dot) com Comment #1
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ case sensitive comparison of email address
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
Reply to this comment
in kronolith/lib/api.php line 1206 there is a case sensitive 
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) {






Saved Queries