From d58184af1533cffa34b00e903dea79f709e0d693 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 13 May 2014 10:15:02 -0400 Subject: [PATCH] Fix synchronization of seen/unseen status of msgs --- NEWS | 2 ++ UI/WebServerResources/MailerUI.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 4d2454dcc..3df8443b3 100644 --- a/NEWS +++ b/NEWS @@ -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) ------------------ diff --git a/UI/WebServerResources/MailerUI.js b/UI/WebServerResources/MailerUI.js index bfd84e673..2c0575995 100644 --- a/UI/WebServerResources/MailerUI.js +++ b/UI/WebServerResources/MailerUI.js @@ -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);