Summary | Error logged when replying or forwarding message |
Queue | IMP |
Queue Version | 5.0-RC2 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | slusarz (at) horde (dot) org |
Requester | jcblanco (at) fi (dot) upm (dot) es |
Created | 04/03/2011 (5208 days ago) |
Due | 04/04/2011 (5207 days ago) |
Updated | 04/04/2011 (5207 days ago) |
Assigned | |
Resolved | 04/04/2011 (5207 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
Bug #9794: Fix object casting to string1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/09733a9b1c30ddf7faa43d783436d2bbf08c0cbf
Priority ⇒ 2. Medium
Patch ⇒ No
Milestone ⇒
Queue ⇒ IMP
Due ⇒ 04/04/2011
Summary ⇒ Error logged when replying or forwarding message
Type ⇒ Bug
State ⇒ Unconfirmed
Apr 3 19:02:11 xweb HORDE: HORDE [imp] PHP ERROR: Illegal offset type
[pid 24959 on line 90 of "/srv/www/htdocs/horde/imp/lib/Indices.php"]
I think that there is a bug in Indices.php line 89
$indices = array(
$data->getMetadata('mailbox') =>
array($data->getMetadata('uid'))
);
Must be
$indices = array(
strval($data->getMetadata('mailbox')) =>
array($data->getMetadata('uid'))
);