diff options
author | Brice Maron <brice@bmaron.net> | 2011-11-06 13:50:05 +0100 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-11-06 13:50:05 +0100 |
commit | 2fa9e3279cd305c9ca6eef01918fb6fa418db7db (patch) | |
tree | 79b37cc38caf0026e4cebd70abc4a6a54bdb9a4d /files/js/files.js | |
parent | 8de7c36b4cbb3ef02ad4ca0023cbb06f9f2481d8 (diff) | |
download | nextcloud-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.js | 2 |
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){ |