Skip to content

Commit

Permalink
[jan] Fix loading message previews from search results (Bug #10152).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jun 1, 2011
1 parent 4529968 commit 3b08020
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions imp/docs/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
v5.0.5-git
----------

[jan] Fix loading message previews from search results (Bug #10152).
[mms] Fix sending messages with linked attachments (Bug #10125).
[mms] Handle response codes/errors returned from POP3 servers.
[mms] Fix POP3 regressions.
Expand Down
2 changes: 1 addition & 1 deletion imp/lib/Ajax/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ public function showPreview()
/* Add changed flag information. */
$imp_imap = $GLOBALS['injector']->getInstance('IMP_Factory_Imap')->create();
if ($imp_imap->imap) {
$status = $imp_imap->status($this->_vars->view, Horde_Imap_Client::STATUS_PERMFLAGS);
$status = $imp_imap->status($mbox, Horde_Imap_Client::STATUS_PERMFLAGS);
if (in_array(Horde_Imap_Client::FLAG_SEEN, $status['permflags'])) {
$this->_queue->flag(array(Horde_Imap_Client::FLAG_SEEN), true, $indices);
}
Expand Down
2 changes: 2 additions & 0 deletions imp/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
</stability>
<license uri="http://www.gnu.org/licenses/gpl.html">GPL</license>
<notes>
* [jan] Fix loading message previews from search results (Bug #10152).
* [mms] Fix sending messages with linked attachments (Bug #10125).
* [mms] Handle response codes/errors returned from POP3 servers.
* [mms] Fix POP3 regressions.
Expand Down Expand Up @@ -2258,6 +2259,7 @@
<date>2011-05-26</date>
<license uri="http://www.gnu.org/licenses/gpl.html">GPL</license>
<notes>
* [jan] Fix loading message previews from search results (Bug #10152).
* [mms] Fix sending messages with linked attachments (Bug #10125).
* [mms] Handle response codes/errors returned from POP3 servers.
* [mms] Fix POP3 regressions.
Expand Down

0 comments on commit 3b08020

Please sign in to comment.