aboutsummaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2011-04-16 17:40:07 +0200
committerFrank Karlitschek <karlitschek@kde.org>2011-04-16 17:40:07 +0200
commit26985721624ac578f42c2b66a308b84273b3adfe (patch)
tree2a4ca3b0ea9aeb3c5c86d388d3933d28cc837759 /files
parente440e733fd0b20d6ca5bef8a3097c6e40346dcc7 (diff)
parent6c51974174f8a78045216567474c380525f77ce9 (diff)
downloadnextcloud-server-26985721624ac578f42c2b66a308b84273b3adfe.tar.gz
nextcloud-server-26985721624ac578f42c2b66a308b84273b3adfe.zip
Merge branch 'refactoring' of git.kde.org:owncloud into refactoring
Diffstat (limited to 'files')
-rw-r--r--files/templates/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/index.php b/files/templates/index.php
index 695a3c45a9d..f1fdafc27cc 100644
--- a/files/templates/index.php
+++ b/files/templates/index.php
@@ -33,7 +33,7 @@
<tr>
<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 $file["name"]; ?></a></td>
- <td class="filesize"><?php if($file["type"] != "dir" ) echo human_file_size($file["size"]); ?></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="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
</tr>