Correctly fix oc-1016 and fix downloading of files
This commit is contained in:
parent
cfc9839812
commit
4e2f575938
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ $(document).ready(function(){
|
|||
var downloadScope = 'file';
|
||||
}
|
||||
FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){
|
||||
window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val()));
|
||||
window.location=OC.filePath('files', 'ajax', 'download.php') + '&files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val());
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue