summaryrefslogtreecommitdiffstats
path: root/files/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-18 10:50:12 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-04-18 10:50:12 +0200
commitbba07fdb26fc6502f28f06941eb53980650ccb0d (patch)
tree90ebe1ce37c4e99df42ada1e4321cd12c4a1d7b0 /files/templates
parent743896010932e1ef2d2d1db898d4365f65116c3c (diff)
downloadnextcloud-server-bba07fdb26fc6502f28f06941eb53980650ccb0d.tar.gz
nextcloud-server-bba07fdb26fc6502f28f06941eb53980650ccb0d.zip
show modified date for folders
Diffstat (limited to 'files/templates')
-rw-r--r--files/templates/part.list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php
index 1c30d5a3311..0d4fcc75489 100644
--- a/files/templates/part.list.php
+++ b/files/templates/part.list.php
@@ -3,7 +3,7 @@
<td class="selection"><input type="checkbox" /></td>
<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 if($file["type"] != "dir") echo $file["date"]; ?></td>
+ <td class="date"><?php echo $file["date"]; ?></td>
<td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
</tr>
<?php endforeach; ?> \ No newline at end of file