diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-05-21 05:41:35 -0400 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-05-21 05:41:35 -0400 |
commit | 319942bccb0f08abd694219b1c7bcf1e71d589c4 (patch) | |
tree | 64223c630491077118f25ef6f3240aebb50d6ccf /apps/files/js | |
parent | 9b23a210c9b33c40364e207b5791e550efd2b72f (diff) | |
parent | 7d98bcf9a2eac2ec8fbba0a521078dea8e240d78 (diff) | |
download | nextcloud-server-319942bccb0f08abd694219b1c7bcf1e71d589c4.tar.gz nextcloud-server-319942bccb0f08abd694219b1c7bcf1e71d589c4.zip |
Merge pull request #8646 from owncloud/publicshare-fixes
[master] Fixed for public link page
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index b9cd9816d4c..2edb45f544c 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -244,7 +244,7 @@ this.register(downloadScope, 'Download', OC.PERMISSION_READ, function () { return OC.imagePath('core', 'actions/download'); }, function (filename) { - var url = OCA.Files.Files.getDownloadUrl(filename, fileList.getCurrentDirectory()); + var url = fileList.getDownloadUrl(filename, fileList.getCurrentDirectory()); if (url) { OC.redirect(url); } |