fix the drop down arrow in file browser

This commit is contained in:
Robin Appelman 2011-05-16 16:34:04 +02:00
parent e314a83a7b
commit 2299a48045
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
<td class="filename"><a style="background-image:url(<?php if($file["type"] == "dir") echo mimetype_icon("dir"); else echo mimetype_icon($file["mime"]); ?>)" href="<?php if($file["type"] == "dir") echo link_to("files", "index.php?dir=".$file["directory"]."/".$file["name"]); else echo link_to("files", "download.php?file=".$file["directory"]."/".$file["name"]); ?>" title=""><?php echo htmlspecialchars($file["name"]); ?></a></td>
<td class="filesize"><?php echo human_file_size($file["size"]); ?></td>
<td class="date"><?php echo $file["date"]; ?></td>
<td class="fileaction"><a href="" title="+" class='dropArrow'/></td>
<td class="fileaction"><a href="" title="+" class='dropArrow'></a></td>
</tr>
<?php endforeach; ?>