Summary | Undefined index 'key' in Imap/Client/Socket.php |
Queue | Horde Framework Packages |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | slusarz (at) horde (dot) org |
Requester | martin (at) matuska (dot) org |
Created | 02/24/2014 (4171 days ago) |
Due | |
Updated | 02/24/2014 (4171 days ago) |
Assigned | |
Resolved | 02/24/2014 (4171 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | Yes |
Assigned to Michael Slusarz
State ⇒ Resolved
commit 4b3e45520f893003ed9cb5783cac97b3b2f40863
Author: Michael M Slusarz <slusarz@horde.org>
Date: Mon Feb 24 13:05:30 2014 -0700
[mms] Fix obtaining bodypart size (
Bug #12992; martin@matuska.org)..../Imap_Client/lib/Horde/Imap/Client/Socket.php | 2 +-
framework/Imap_Client/package.xml | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/4b3e45520f893003ed9cb5783cac97b3b2f40863
Priority ⇒ 2. Medium
Patch ⇒ Yes
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ Undefined index 'key' in Imap/Client/Socket.php
Type ⇒ Bug
State ⇒ Unconfirmed
#2728of Imap_Client/lib/Horde/Imap/Client/Socket.php thevariable $key is unitialized. The foreach statement needs fixing.
- foreach ($c_val as $val) {
+ foreach ($c_val as $key => $val) {
I am submitting this as a git pull request.