files_imageviewer: Double encode paths. Fixes oc-1016.

This commit is contained in:
Thomas Tanghus 2012-06-16 18:54:55 +02:00
parent 4cbdd59859
commit 1118498050
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ function viewImage(dir, file) {
if(file.indexOf('.psd')>0){//can't view those
return;
}
var location=OC.filePath('files','ajax','download.php')+'?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir);
var location=OC.filePath('files','ajax','download.php')+encodeURIComponent('?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir));
$.fancybox({
"href": location,
"title": file.replace(/</, "&lt;").replace(/>/, "&gt;"),