]> source.dussan.org Git - nextcloud-server.git/commitdiff
Don't escape filesize (can contain a '<')
authorkondou <kondou@ts.unde.re>
Tue, 2 Jul 2013 11:09:07 +0000 (13:09 +0200)
committerkondou <kondou@ts.unde.re>
Tue, 2 Jul 2013 11:09:07 +0000 (13:09 +0200)
apps/files/templates/part.list.php

index 05fbb892509cb904070a7c64e155d2dad99cf9e6..502ddd329b101b12e2b1d35ebc5514cd48c1bd66 100644 (file)
@@ -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>