Monotone-Parent: e9e3e99e5c78c811e3e5cb0f4742380c31e1e44c

Monotone-Revision: 0e5184582f5d3e24e8418e6c09048eb31dd79c83

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-05-01T17:03:14
This commit is contained in:
Wolfgang Sourdeau
2012-05-01 17:03:14 +00:00
parent 71785b1405
commit 08b23ed95e
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
2012-05-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/generic.js (accessToSubscribedFolder): use
the last part of the string as folder identifier. Otherwise we end
up with the module name.
* SoObjects/Mailer/SOGoDraftObject.m
(-bodyPartForAttachmentWithName:): attach rfc822 content as 8bit,
since the "quoted-printable" encoder of SOPE is broken.
+2 -2
View File
@@ -1266,10 +1266,10 @@ function accessToSubscribedFolder(serverFolder) {
var username = parts[0];
var paths = parts[1].split("/");
if (username == UserLogin) {
folder = paths[1];
folder = paths[2];
}
else {
folder = "/" + username.asCSSIdentifier() + "_" + paths[1];
folder = "/" + username.asCSSIdentifier() + "_" + paths[2];
}
}
else {