Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-12-02 13:30:55 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-12-02 13:30:55 +0400
commitaaeb7827b8b8a45f87d5dd23c19b24d032f2ec4d (patch)
treed83bd8f980688a48f10315ddd6653def5b1f29cd /apps
parentf0f0be8b2b58b056c29410596b4a744a5b3b52f7 (diff)
fixing ajax call to getstoragestats.php
Diffstat (limited to 'apps')
-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);
});
}