summaryrefslogtreecommitdiffstats
path: root/files/js/files.js
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2011-11-06 13:50:05 +0100
committerBrice Maron <brice@bmaron.net>2011-11-06 13:50:05 +0100
commit2fa9e3279cd305c9ca6eef01918fb6fa418db7db (patch)
tree79b37cc38caf0026e4cebd70abc4a6a54bdb9a4d /files/js/files.js
parent8de7c36b4cbb3ef02ad4ca0023cbb06f9f2481d8 (diff)
downloadnextcloud-server-2fa9e3279cd305c9ca6eef01918fb6fa418db7db.tar.gz
nextcloud-server-2fa9e3279cd305c9ca6eef01918fb6fa418db7db.zip
Manage More special chars in file listings. ';' is still problematic
Diffstat (limited to 'files/js/files.js')
-rw-r--r--files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/js/files.js b/files/js/files.js
index 469a4b81d2f..4eaa098241b 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -1,7 +1,7 @@
$(document).ready(function() {
$('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute
- $(this).attr('data-file',decodeURI($(this).attr('data-file')));
+ $(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));
});
if($('tr[data-file]').length==0){