diff options
author | Brice Maron <brice@bmaron.net> | 2011-11-06 00:39:11 +0100 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-11-06 00:39:11 +0100 |
commit | 75ff9abaca2f1a067be3fce10794835b857e5cba (patch) | |
tree | b70bd50c690a6d2e6a6d4ed77521f56910c8c2ad /files | |
parent | 70014c4fd02f3bda7c92f68ffee8b787b223022f (diff) | |
download | nextcloud-server-75ff9abaca2f1a067be3fce10794835b857e5cba.tar.gz nextcloud-server-75ff9abaca2f1a067be3fce10794835b857e5cba.zip |
Fix another problem of the so-called 'fix-special chars' commit.
Diffstat (limited to 'files')
-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 5adf67010b9..0af2b9285b9 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',unescape($(this).attr('data-file'))); + $(this).attr('data-file',decodeURI($(this).attr('data-file'))); }); if($('tr[data-file]').length==0){ |