aboutsummaryrefslogtreecommitdiff
path: root/radicale_web/web/infcloud/main.js
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2017-03-17 14:48:02 +0100
committerUnrud <unrud@openaliasbox.org>2017-03-17 14:48:02 +0100
commitcc9928bfe5ef0b4ebc0ba671fc0b1660654057d1 (patch)
tree7fab3b9188f7863d0cabf78691343bcba4c8ed85 /radicale_web/web/infcloud/main.js
parentDon't use :scope pseudo-class in queries (diff)
downloadradicaleinfcloud-cc9928bfe5ef0b4ebc0ba671fc0b1660654057d1.tar.gz
radicaleinfcloud-cc9928bfe5ef0b4ebc0ba671fc0b1660654057d1.tar.bz2
radicaleinfcloud-cc9928bfe5ef0b4ebc0ba671fc0b1660654057d1.zip
InfCloud: Allow empty passwords
Diffstat (limited to 'radicale_web/web/infcloud/main.js')
-rw-r--r--radicale_web/web/infcloud/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/radicale_web/web/infcloud/main.js b/radicale_web/web/infcloud/main.js
index 23ebfab..6a9f248 100644
--- a/radicale_web/web/infcloud/main.js
+++ b/radicale_web/web/infcloud/main.js
@@ -788,7 +788,7 @@ function loadConfig()
// check username and password against the server and create config from globalNetworkCheckSettings
if(typeof globalNetworkCheckSettings!='undefined' && globalNetworkCheckSettings!=null)
{
- if(globalLoginUsername=='' || globalLoginPassword=='')
+ if(globalLoginUsername=='')
{
$('#LoginPage').fadeTo(500, 1, function(){if(typeof globalDemoMode=='undefined') $('[data-type="system_username"]').focus()});
$('#LoginLoader').fadeOut(1200);
@@ -824,7 +824,7 @@ function loadConfig()
// load the configuration XML(s) from the network
if(typeof globalNetworkAccountSettings!='undefined' && globalNetworkAccountSettings!=null)
{
- if(globalLoginUsername=='' || globalLoginPassword=='')
+ if(globalLoginUsername=='')
{
$('#LoginPage').fadeTo(500, 1, function(){if(typeof globalDemoMode=='undefined') $('[data-type="system_username"]').focus()});
$('#LoginLoader').fadeOut(1200);
bgstack15