diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-05-23 18:21:47 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-05-24 00:11:27 +0200 |
commit | 9edf81955c82b34bedaa0f95a8ee021e60b51ed3 (patch) | |
tree | de9a34c59a1b2dd2d9e4e13507655275a4c36fc8 | |
parent | 2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 (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>
-rw-r--r-- | application/views/file/upload_history.php | 2 |
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; ?> |