diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-05-16 16:34:04 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-05-17 20:37:39 +0200 |
commit | 2299a4804519c19b451f2defa5d74c5bf8a6e4b9 (patch) | |
tree | 67430256920fde8c4ffaa206668c406a62fac4f2 /files | |
parent | e314a83a7b4ceb387f1b72f6e93fb2d19eacf39f (diff) | |
download | nextcloud-server-2299a4804519c19b451f2defa5d74c5bf8a6e4b9.tar.gz nextcloud-server-2299a4804519c19b451f2defa5d74c5bf8a6e4b9.zip |
fix the drop down arrow in file browser
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/part.list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 19143807c28..0d3355678c3 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -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; ?>
\ No newline at end of file |