diff options
author | kondou <kondou@ts.unde.re> | 2013-07-02 13:09:07 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-02 13:09:07 +0200 |
commit | 063b0a2d174b5c103ec35b2cd88458fe8f54f332 (patch) | |
tree | bd07b0e5b20c31fbda733d9081f8636c404dd007 /apps/files/templates | |
parent | b1d0de95a9407662933c1d662834410fe927423c (diff) | |
download | nextcloud-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.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 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> |