See ChangeLog

Monotone-Parent: ccda1427d14d0786cfb28dbb253a43ab22a93a2e
Monotone-Revision: 87eb8bb69f68316e6f95f8206ea9f665209d2b0f

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-08-12T02:12:24
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-08-12 02:12:24 +00:00
parent 4e74655335
commit 1773670282
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2010-08-11 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/MailerUI.js (refreshMessage): if the
current mailbox is the sent folder, refresh the mailbox instead of
only the message.
2010-08-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js: (initCalendars): avoid

View File

@@ -1586,7 +1586,9 @@ function refreshCurrentFolder() {
/* Called after sending an email */
function refreshMessage(mailbox, messageUID) {
if (mailbox == Mailer.currentMailbox) {
if (Mailer.currentMailboxType == 'sent')
refreshCurrentFolder();
else if (mailbox == Mailer.currentMailbox) {
Mailer.dataTable.invalidate(messageUID);
}
}