Skip to content
Snippets Groups Projects
Commit bf00ccd1 authored by Vincent Petry's avatar Vincent Petry
Browse files

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.
parent 3a3819b3
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ $totalsize = 0; ?> ...@@ -36,7 +36,7 @@ $totalsize = 0; ?>
<?php else: ?> <?php else: ?>
<a class="name" href="<?php p(rtrim($_['downloadURL'],'/').'/'.trim($directory,'/').'/'.$name); ?>"> <a class="name" href="<?php p(rtrim($_['downloadURL'],'/').'/'.trim($directory,'/').'/'.$name); ?>">
<label class="filetext" title="" for="select-<?php p($file['fileid']); ?>"></label> <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> </a>
<?php endif; ?> <?php endif; ?>
<?php if($file['type'] == 'dir'):?> <?php if($file['type'] == 'dir'):?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment