See ChangeLog

Monotone-Parent: e43c9b00bdea42b8d8040a8c2bb1123e3a5230ec
Monotone-Revision: 5016da15e7302739b395754fe5a9d170409343ae

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-08-12T15:31:17
This commit is contained in:
Ludovic Marcotte
2010-08-12 15:31:17 +00:00
parent 798076e6fa
commit a6df60d4d8
2 changed files with 9 additions and 1 deletions
+6
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 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentObject.m
+3 -1
View File
@@ -1571,7 +1571,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);
}
}