summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-12-02 01:50:07 -0800
committerVincent Petry <pvince81@owncloud.com>2013-12-02 01:50:07 -0800
commite079d34f5af344e432f0d4aa7f128d02e69336f2 (patch)
treed83bd8f980688a48f10315ddd6653def5b1f29cd
parentf0f0be8b2b58b056c29410596b4a744a5b3b52f7 (diff)
parentaaeb7827b8b8a45f87d5dd23c19b24d032f2ec4d (diff)
downloadnextcloud-server-e079d34f5af344e432f0d4aa7f128d02e69336f2.tar.gz
nextcloud-server-e079d34f5af344e432f0d4aa7f128d02e69336f2.zip
Merge pull request #6147 from owncloud/fix-ajax-getstoragestats-stable5
fixing ajax call to getstoragestats.php
-rw-r--r--apps/files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 1e523e8441d..a603d123ab9 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -524,7 +524,7 @@ $(document).ready(function() {
// file space size sync
function update_storage_statistics() {
var currentDir = $('#dir').val() || '/';
- $.getJSON(OC.filePath('files','ajax','getstoragestats.php?dir=' + encodeURIComponent(currentDir)),function(response) {
+ $.getJSON(OC.filePath('files','ajax','getstoragestats.php') + '?dir=' + encodeURIComponent(currentDir),function(response) {
Files.updateMaxUploadFilesize(response);
});
}