mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-18 06:34:53 +00:00
Monotone-Parent: 6da486b20dffb8047599fe095aeffd818fb154f7
Monotone-Revision: cbf125640f6348895aa302fdfc58f2a13c96cc80 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-08-09T16:47:51 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2010-08-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/MailerUI.js (openMailbox): removed the
|
||||
"updateStatus" parameter, which is never used.
|
||||
|
||||
* UI/WebServerResources/generic.js (log): fixed handling of
|
||||
messages ending with "\n".
|
||||
|
||||
|
||||
@@ -622,7 +622,7 @@ function composeNewMessage() {
|
||||
}
|
||||
}
|
||||
|
||||
function openMailbox(mailbox, reload, updateStatus) {
|
||||
function openMailbox(mailbox, reload) {
|
||||
if (mailbox != Mailer.currentMailbox || reload) {
|
||||
var url = ApplicationBaseURL + encodeURI(mailbox);
|
||||
var urlParams = new Hash();
|
||||
@@ -691,9 +691,6 @@ function openMailbox(mailbox, reload, updateStatus) {
|
||||
loadMessage(currentMessage);
|
||||
}
|
||||
}
|
||||
|
||||
if (updateStatus != false)
|
||||
getStatusFolders();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1672,7 +1669,7 @@ function refreshContacts() {
|
||||
|
||||
function openInbox(node) {
|
||||
var done = false;
|
||||
openMailbox(node.parentNode.getAttribute("dataname"), false, false);
|
||||
openMailbox(node.parentNode.getAttribute("dataname"), false);
|
||||
var tree = $("mailboxTree");
|
||||
tree.selectedEntry = node;
|
||||
node.selectElement();
|
||||
|
||||
Reference in New Issue
Block a user