diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-10 12:21:02 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-10 12:21:02 +0200 |
commit | bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6 (patch) | |
tree | c70888f99d03c2c2363021e53c49aa290522a2e2 | |
parent | 3a3819b30392547d6d4250830275cec64f7a08d4 (diff) | |
download | nextcloud-server-bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6.tar.gz nextcloud-server-bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6.zip |
Fixed files view regular file actions in IE8
Fixes #5256
A missing closing span broken the container in IE8 which prevented the
file actions to be appended properly.
-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 0679da334de..a6d2e44f34f 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -36,7 +36,7 @@ $totalsize = 0; ?> <?php else: ?> <a class="name" href="<?php p(rtrim($_['downloadURL'],'/').'/'.trim($directory,'/').'/'.$name); ?>"> <label class="filetext" title="" for="select-<?php p($file['fileid']); ?>"></label> - <span class="nametext"><?php print_unescaped(htmlspecialchars($file['basename']));?><span class='extension'><?php p($file['extension']);?></span> + <span class="nametext"><?php print_unescaped(htmlspecialchars($file['basename']));?><span class='extension'><?php p($file['extension']);?></span></span> </a> <?php endif; ?> <?php if($file['type'] == 'dir'):?> |