Skip to content

Commit

Permalink
Fix parsing $folderid and $itemid from longid.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 11, 2017
1 parent 3dbefbf commit 48a44f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -2206,7 +2206,7 @@ public function sendMail(
if ($forward || $reply) {
$source = $message->source;
if ($source->longid) {
list($folderid, $itemid) = each(explode(':', $source, 2));
list($folderid, $itemid) = explode(':', $source, 2);
} elseif ($forward === true || $reply === true) {
$folderid = $source->folderid;
$itemid = $source->itemid;
Expand Down

0 comments on commit 48a44f0

Please sign in to comment.