summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_history.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-04-11 12:13:28 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-04-11 12:13:28 +0200
commitce6162603ec08565f9ef9ff406e321b4bae2f038 (patch)
tree8725fc92320b0cf19909615098efecfdbeceb17b /application/views/file/upload_history.php
parentf953eba8d7c9e362fd18a311367a6fc7b9b9cac4 (diff)
Add filesize to history view
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r--application/views/file/upload_history.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php
index 1dcaa8053..8f0f8e3d7 100644
--- a/application/views/file/upload_history.php
+++ b/application/views/file/upload_history.php
@@ -6,6 +6,7 @@
<th>Mimetype
<th>Date</th>
<th>Hash</th>
+ <th>Size</th>
</tr>
<?php foreach($query as $key => $item): ?>
@@ -16,6 +17,7 @@
<td><?php echo $item["mimetype"]; ?></td>
<td><?php echo $item["date"]; ?></td>
<td><?php echo $item["hash"]; ?></td>
+ <td><?php echo $item["filesize"]; ?></td>
</tr>
<?php endforeach; ?>
</table>