summaryrefslogtreecommitdiffstats
path: root/web/template/account_search_results.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-02-09 01:37:03 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2014-02-09 01:43:37 +0100
commit8c07c091e8b4bfcee33745d6c2e58a35cbf9a44d (patch)
tree40572d50c23bec38f880f35b52d5919418d67f61 /web/template/account_search_results.php
parentb7b586a8c405e6e5967c5febcab67caab581ca0c (diff)
downloadaurweb-8c07c091e8b4bfcee33745d6c2e58a35cbf9a44d.tar.xz
Remove LastVoted column
This has been introduced by commit aae43d9 (started working on package comments, 2005-03-05) but it seems to be of no practical use. Remove the field to save some space. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/account_search_results.php')
-rw-r--r--web/template/account_search_results.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/web/template/account_search_results.php b/web/template/account_search_results.php
index ae7c112..bd4ee29 100644
--- a/web/template/account_search_results.php
+++ b/web/template/account_search_results.php
@@ -13,7 +13,6 @@ else:
<th><?= __("Real Name") ?></th>
<th><?= __("IRC Nick") ?></th>
<th><?= __("PGP Key Fingerprint") ?></th>
- <th><?= __("Last Voted") ?></th>
<th><?= __("Edit Account") ?></th>
</tr>
</thead>
@@ -42,7 +41,6 @@ else:
<td><?php $row["RealName"] ? print htmlspecialchars($row["RealName"],ENT_QUOTES) : print "&nbsp;" ?></td>
<td><?php $row["IRCNick"] ? print htmlspecialchars($row["IRCNick"],ENT_QUOTES) : print "&nbsp;" ?></td>
<td><?php $row["PGPKey"] ? print html_format_pgp_fingerprint($row["PGPKey"]) : print "&nbsp;" ?></td>
- <td><?php $row["LastVoted"] ? print date("Y-m-d", $row["LastVoted"]) : print __("Never") ?></td>
<td>
<?php
if ($UTYPE == "Trusted User" && $row["AccountType"] == "Developer"):