See ChangeLog.

Monotone-Parent: 4c3ef9250b14b8cbfc955a62b1db4aedc143baff
Monotone-Revision: 16f5335de7590f257b443a73447490fb19e25986

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-11-09T19:48:51
maint-2.0.2
Francis Lachapelle 2011-11-09 19:48:51 +00:00
parent 1a4af2df68
commit 8ba3e7ac92
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-11-09 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SOGoRootPage.js (onLoginClick): don't
assume that the checkbox rememberLogin is always part of the template.
2011-11-01 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxAclEditor.js (addUser): fixed CSS class

View File

@ -86,7 +86,8 @@ function onLoginClick(event) {
: ("&language=" + language.value));
if (domain)
parameters += "&domain=" + domain.value;
if ($("rememberLogin").checked)
var rememberLogin = $("rememberLogin");
if (rememberLogin && rememberLogin.checked)
parameters += "&rememberLogin=1";
/// Discarded as it seems to create a cookie for nothing. To discard