mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Don't escape filesize (can contain a '<')
This commit is contained in:
parent
b1d0de95a9
commit
063b0a2d17
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue