Merge pull request #1974 from owncloud/use-rawurlencode
OC6- Just use rawurlencode in files list template
This commit is contained in:
commit
248e097f3c
1 changed files with 2 additions and 2 deletions
|
@ -9,9 +9,9 @@
|
|||
// the older the file, the brighter the shade of grey; days*14
|
||||
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14);
|
||||
if($relative_date_color>200) $relative_date_color = 200;
|
||||
$name = str_replace('+', '%20', urlencode($file['name']));
|
||||
$name = rawurlencode($file['name']);
|
||||
$name = str_replace('%2F', '/', $name);
|
||||
$directory = str_replace('+', '%20', urlencode($file['directory']));
|
||||
$directory = rawurlencode($file['directory']);
|
||||
$directory = str_replace('%2F', '/', $directory); ?>
|
||||
<tr data-id="<?php p($file['fileid']); ?>"
|
||||
data-file="<?php p($name);?>"
|
||||
|
|
Loading…
Reference in a new issue