Merge pull request #25256 from owncloud/stable9-setupchecks-preventreload

[stable9] Don't reload page in case of auth errors during setup checks
This commit is contained in:
Christoph Wurst 2016-06-24 17:12:42 +02:00 committed by GitHub
commit 907c90165a
1 changed files with 4 additions and 2 deletions

View File

@ -76,7 +76,8 @@
$.ajax({
type: 'PROPFIND',
url: url,
complete: afterCall
complete: afterCall,
allowAuthErrors: true
});
return deferred.promise();
},
@ -209,7 +210,8 @@
$.ajax({
type: 'GET',
url: OC.linkTo('', oc_dataURL+'/htaccesstest.txt?t=' + (new Date()).getTime()),
complete: afterCall
complete: afterCall,
allowAuthErrors: true
});
return deferred.promise();
},