diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 094fb81d78..016aef05a9 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -506,10 +506,5 @@ var folderDropOptions = { tolerance: 'pointer' }; -// override core's fileDownloadPath (legacy) -function fileDownloadPath(dir, file) { - return OCA.Files.Files.getDownloadUrl(file, dir); -} - // for backward compatibility window.Files = OCA.Files.Files; diff --git a/core/js/js.js b/core/js/js.js index bc6c078175..edde0ff390 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -46,17 +46,6 @@ function escapeHTML(s) { return s.toString().split('&').join('&').split('<').join('<').split('>').join('>').split('"').join('"').split('\'').join('''); } -/** -* Get the path to download a file -* @param {string} file The filename -* @param {string} dir The directory the file is in - e.g. $('#dir').val() -* @return {string} Path to download the file -* @deprecated use Files.getDownloadURL() instead -*/ -function fileDownloadPath(dir, file) { - return OC.filePath('files', 'ajax', 'download.php')+'?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir); -} - /** @namespace */ var OCP = {}, OC = {