mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-10 21:09:50 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"));
|
||||
|
||||
Reference in New Issue
Block a user