summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_history.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-05-23 18:21:47 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-05-24 00:11:27 +0200
commit9edf81955c82b34bedaa0f95a8ee021e60b51ed3 (patch)
treede9a34c59a1b2dd2d9e4e13507655275a4c36fc8 /application/views/file/upload_history.php
parent2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 (diff)
upload_history: remove hash
It uses a rather large amount of space and doesn't really help people much. We'll leave it for the plaintext version so you can still use it in the client if you want to. 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, 0 insertions, 2 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php
index d3699d565..7dc7d28cc 100644
--- a/application/views/file/upload_history.php
+++ b/application/views/file/upload_history.php
@@ -8,7 +8,6 @@
<th>Filename</th>
<th>Mimetype
<th>Date</th>
- <th>Hash</th>
<th>Size</th>
</tr>
</thead>
@@ -20,7 +19,6 @@
<td><?php echo htmlspecialchars($item["filename"]); ?></td>
<td><?php echo $item["mimetype"] ?></td>
<td class="nowrap"><?php echo date("r", $item["date"]); ?><span class="hidden">t=<?php echo $item["date"]; ?></span></td>
- <td><?php echo $item["hash"] ?></td>
<td><?php echo $item["filesize"] ?></td>
</tr>
<?php endforeach; ?>