Summary | invitation saved with strict case but attendees read from sql lowercased |
Queue | Kronolith |
Queue Version | 4.2.3 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | pascal.rigaux (at) univ-paris1 (dot) fr |
Created | 03/10/2015 (3784 days ago) |
Due | |
Updated | 03/13/2015 (3781 days ago) |
Assigned | 03/13/2015 (3781 days ago) |
Resolved | 03/13/2015 (3781 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
commit 32debe35a4c14fdd7e9a9ca2985c77376848fbc5
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Mar 13 15:05:25 2015 -0400
Improved checking of attendees when user part differs in case.
See
Bug #13905kronolith/lib/Event.php | 17 +++++++++++++----
kronolith/lib/Event/Sql.php | 2 +-
2 files changed, 14 insertions(+), 5 deletions(-)
http://github.com/horde/horde/commit/32debe35a4c14fdd7e9a9ca2985c77376848fbc5
State ⇒ Assigned
Priority ⇒ 1. Low
https://github.com/horde/horde/commit/185ae67df196e6b8987f99b6620b20223af65a10
State ⇒ Resolved
Assigned to Michael Rubinsky
commit 8c5ff94f06a7ac0c300b3ca444da89f5c44fb3b3
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Mar 13 13:09:20 2015 -0400
Bug: 13905Compare attendees in case-insensitive manner.kronolith/lib/Event.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/8c5ff94f06a7ac0c300b3ca444da89f5c44fb3b3
commit 185ae67df196e6b8987f99b6620b20223af65a10
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Mar 13 13:09:20 2015 -0400
Bug: 13905Compare attendees in case-insensitive manner.kronolith/lib/Event.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/185ae67df196e6b8987f99b6620b20223af65a10
Priority ⇒ 2. Medium
State ⇒ Unconfirmed
Patch ⇒ No
Milestone ⇒
Queue ⇒ Kronolith
Summary ⇒ invitation saved with strict case but attendees read from sql lowercased
Type ⇒ Bug
#12505, attendees mail adresses are saved with strictcase (ie not lower cased anymore).
Invitations contain url with u=Foo.Bar@xxx
But lib/Event/Sql.php which reads from DB is doing :
$this->attendees =
array_change_key_case($driver->convertFromDriver($attendees));
I suggest removing array_change_key_case.