diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-02 10:30:55 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-02 10:30:55 +0100 |
commit | aaeb7827b8b8a45f87d5dd23c19b24d032f2ec4d (patch) | |
tree | d83bd8f980688a48f10315ddd6653def5b1f29cd | |
parent | f0f0be8b2b58b056c29410596b4a744a5b3b52f7 (diff) | |
download | nextcloud-server-aaeb7827b8b8a45f87d5dd23c19b24d032f2ec4d.tar.gz nextcloud-server-aaeb7827b8b8a45f87d5dd23c19b24d032f2ec4d.zip |
fixing ajax call to getstoragestats.php
-rw-r--r-- | apps/files/js/files.js | 2 |
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); }); } |