diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-02 23:41:14 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-02 23:41:14 +0100 |
commit | 9f087a2070c1115eeb6bd0d961f7629e19eceefc (patch) | |
tree | ec94c70a5876504935a0da881582eb85040a49f6 /apps/files/js | |
parent | e1030c6b5f8775ad4aac13659757cd6cc3cd441b (diff) | |
download | nextcloud-server-9f087a2070c1115eeb6bd0d961f7629e19eceefc.tar.gz nextcloud-server-9f087a2070c1115eeb6bd0d961f7629e19eceefc.zip |
fixing download url in files app
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c3c7f4c2b9b..d6a4ae99764 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -138,7 +138,7 @@ window.FileList={ var download_url = null; if (!param.download_url) { download_url = OC.generateUrl( - '/download{file}', + 'apps/files/download{file}', { file: $('#dir').val()+'/'+name }); } else { download_url = param.download_url; |