Fix for bug #1438.

See ChangeLog.

Monotone-Parent: f770d812a46b526af6dd29630df45683a5bf503d
Monotone-Revision: c98e3872a8bdd768ed6e254e52f9956140773146

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-10-18T19:09:19
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2011-10-18 19:09:19 +00:00
parent 4ec2cd31d1
commit 9caf03820b
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2011-10-18 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (log): fixed an issue with
Firefox and IE when SOGo was opened using a targeted link.
* SoObjects/Mailer/SOGoMailFolder.m
(-copyUIDs:toFolder:inContext:): now returns the raw IMAP response
when the copy operation failed (most probably something like "Over quota").

View File

@ -804,8 +804,11 @@ function toggleLogConsole(event) {
function log(message) {
if (!logWindow) {
logWindow = window;
while (logWindow.opener)
logWindow = logWindow.opener;
try {
while (logWindow.opener && logWindow.opener_logMessage)
logWindow = logWindow.opener;
}
catch(e) {}
}
if (logWindow && logWindow._logMessage) {
var logMessage = message;