Skip to content
Snippets Groups Projects
Commit 736553b8 authored by Prasad's avatar Prasad
Browse files

Merge branch '156760082' into 'master'

#Fixes::156760082::madhusr::The search results in the email module are not...

See merge request !1037
parents 1133ee87 87164dad
No related branches found
No related tags found
No related merge requests found
......@@ -390,10 +390,12 @@ class MailManager_Connector_Connector {
}
foreach($records as $result) {
array_unshift($mails, MailManager_Message_Model::parseOverview($result,$mbox));
$message = MailManager_Message_Model::parseOverview($result,$mbox);
array_unshift($mails, $message);
array_unshift($mailnos, $message->msgNo());
}
$folder->setMails($mails);
$folder->setMailIds($nos);
$folder->setMailIds($mailnos);
$folder->setPaging($reverse_end, $reverse_start, $maxLimit, $nmsgs, $start); //-1 as it starts from 0
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment