Summary | A tiny bug in mailbox.php |
Queue | IMP |
Queue Version | FRAMEWORK_3 |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | c.menssen (at) web (dot) de |
Created | 10/13/2005 (7223 days ago) |
Due | |
Updated | 10/13/2005 (7223 days ago) |
Assigned | |
Resolved | 10/13/2005 (7223 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ A tiny bug in mailbox.php
Queue ⇒ IMP
$foo = imap_rfc822_parse_adrlist($h->from, '');
$from_ob = array_shift($foo);
works!
$from_ob = array_shift(imap_rfc822_parse_adrlist($h->from, ''));
drops a reference error
Regards,
Chris