See ChangeLog.

Monotone-Parent: 8024e7884f12b6b63830153922546ddf8d4f2ed8
Monotone-Revision: 02babe4737ff32b8a48a8a24bbe0e321be9a0e8f

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-08-02T17:25:51
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2011-08-02 17:25:51 +00:00
parent 2a0c7ca5c5
commit b67af40c95
3 changed files with 14 additions and 2 deletions
+8
View File
@@ -1,3 +1,11 @@
2011-08-02 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/MailerUI.js (_onMenuLabelFlagX): fixed a
bug when changing the flag of multiple messages.
* UI/WebServerResources/SOGoRootPage.js (onLoginClick): reset
error message (if any) when login in.
2011-08-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFSMessage.m
+4 -2
View File
@@ -2439,8 +2439,10 @@ function _onMenuLabelFlagX(flag) {
$('row_' + Mailer.currentMessages[Mailer.currentMailbox]).getAttribute("labels"));
else if (Object.isArray(document.menuTarget))
// Menu called from multiple selection in messages list view
$(document.menuTarget).collect(function(row) {
messages.set(row.getAttribute("id").substr(4),
$(document.menuTarget).collect(function(rowID) {
var row = $(rowID);
if (row)
messages.set(rowID.substr(4),
row.getAttribute("labels"));
});
else
+2
View File
@@ -62,6 +62,8 @@ function onLoginClick(event) {
var language = $("language");
var domain = $("domain");
SetLogMessage("errorMessage");
if (userName.length > 0 && password.length > 0) {
this.disabled = true;
startAnimation($("animation"));