Skip to content

Commit

Permalink
Merge pull request #25256 from owncloud/stable9-setupchecks-preventre…
Browse files Browse the repository at this point in the history
…load

[stable9] Don't reload page in case of auth errors during setup checks
  • Loading branch information
ChristophWurst committed Jun 24, 2016
2 parents eb8e151 + e366ed6 commit 907c901
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/js/setupchecks.js
Expand Up @@ -76,7 +76,8 @@
$.ajax({
type: 'PROPFIND',
url: url,
complete: afterCall
complete: afterCall,
allowAuthErrors: true
});
return deferred.promise();
},
Expand Down Expand Up @@ -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();
},
Expand Down

0 comments on commit 907c901

Please sign in to comment.