diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-27 21:40:06 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-27 21:40:06 +0100 |
commit | c9415e65299e8588eb4e7fb52838eebcc0cae16f (patch) | |
tree | 4ead2cfaee5793770ffe1517c4d467a5e07af945 /apps/files/templates | |
parent | 221ecf63ab92cfbdfe2204dfccbb90ff68e09426 (diff) | |
download | nextcloud-server-c9415e65299e8588eb4e7fb52838eebcc0cae16f.tar.gz nextcloud-server-c9415e65299e8588eb4e7fb52838eebcc0cae16f.zip |
[files] Unescape file size
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/part.list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 86c2cc70766..cdd157b27e4 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -49,7 +49,7 @@ <td class="filesize" title="<?php p(OCP\human_file_size($file['size'])); ?>" style="color:rgb(<?php p($simple_size_color.','.$simple_size_color.','.$simple_size_color) ?>)"> - <?php p($simple_file_size); ?> + <?php print_unescaped($simple_file_size); ?> </td> <td class="date"> <span class="modified" |