Fix synchronization of seen/unseen status of msgs

pull/38/head
Francis Lachapelle 2014-05-13 10:15:02 -04:00
parent fbc6856fd5
commit d58184af15
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -25,6 +25,8 @@ Bug fixes
- fixed limitation of Sieve script size (#2745)
- fixed sync-token generation when no change was returned (#2492)
- fixed the IMAP copy/move operation between subfolders in different accounts
- fixed synchronization of seen/unseen status of msgs in Webmail (#2715)
- fixed focus of popup windows open through a contextual menu with Firefox on Windows 7
2.2.3 (2014-04-03)
------------------

View File

@ -55,7 +55,7 @@ function openMessageWindow(msguid, url) {
var wId = '';
if (msguid) {
wId += "SOGo_msg" + Mailer.currentMailbox + "/" + msguid;
markMailReadInWindow(window, msguid);
mailListToggleMessagesRead($("row_" + msguid), true);
}
var msgWin = openMailComposeWindow(url, wId);