fix deleting files with spaces in the name

This commit is contained in:
Robin Appelman 2011-07-19 23:56:21 +02:00
Родитель 6cd5270967
Коммит 332cab0c55
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -86,7 +86,7 @@ FileActions.register('all','Download',function(filename){
FileActions.register('all','Delete',function(filename){
$.ajax({
url: 'ajax/delete.php',
data: "dir="+$('#dir').val()+"&file="+filename,
data: "dir="+encodeURIComponent($('#dir').val())+"&file="+encodeURIComponent(filename),
complete: function(data){
boolOperationFinished(data, function(){
FileList.remove(filename);

Просмотреть файл

@ -117,7 +117,7 @@ $(document).ready(function() {
//send the browser to the download location
var dir=$('#dir').val()||'/';
// alert(files);
window.location='ajax/download.php?files='+files+'&dir='+dir;
window.location='ajax/download.php?files='+encodeURIComponent(files)+'&dir='+encodeURIComponent(dir);
return false;
});
@ -130,7 +130,7 @@ $(document).ready(function() {
$.ajax({
url: 'ajax/delete.php',
data: "dir="+$('#dir').val()+"&files="+files,
data: "dir="+$('#dir').val()+"&files="+encodeURIComponent(files),
complete: function(data){
boolOperationFinished(data, function(){
$('td.selection input:checkbox:checked').parent().parent().each(function(i,element){