summaryrefslogtreecommitdiffstats
path: root/apps/files/templates
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-07-02 13:09:07 +0200
committerkondou <kondou@ts.unde.re>2013-07-02 13:09:07 +0200
commit063b0a2d174b5c103ec35b2cd88458fe8f54f332 (patch)
treebd07b0e5b20c31fbda733d9081f8636c404dd007 /apps/files/templates
parentb1d0de95a9407662933c1d662834410fe927423c (diff)
downloadnextcloud-server-063b0a2d174b5c103ec35b2cd88458fe8f54f332.tar.gz
nextcloud-server-063b0a2d174b5c103ec35b2cd88458fe8f54f332.zip
Don't escape filesize (can contain a '<')
Diffstat (limited to 'apps/files/templates')
-rw-r--r--apps/files/templates/part.list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php
index 05fbb892509..502ddd329b1 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -93,7 +93,7 @@ $totalsize = 0; ?>
} ?>
</span></td>
<td class="filesize">
- <?php p(OCP\simple_file_size($totalsize)); ?>
+ <?php print_unescaped(OCP\simple_file_size($totalsize)); ?>
</td>
<td></td>
</tr>