diff options
author | canyonknight <canyonknight@gmail.com> | 2012-10-18 23:12:28 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-20 18:47:01 +0200 |
commit | a9f052036d89df5cff91f382ef7890fab37be41e (patch) | |
tree | 15ee0da68ac5443f342e935098a60fa17f0378a9 /web/template | |
parent | 4cf84f978bd386bd30888c5a4f497b2541cc689f (diff) | |
download | aur-a9f052036d89df5cff91f382ef7890fab37be41e.tar.gz aur-a9f052036d89df5cff91f382ef7890fab37be41e.tar.xz |
account_details.php: Fix XHTML tags being closed incorrectly
Replace incorrect </td> tags with </th> tags
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/account_details.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/web/template/account_details.php b/web/template/account_details.php index aa18f5b4..fdebfb33 100644 --- a/web/template/account_details.php +++ b/web/template/account_details.php @@ -4,11 +4,11 @@ <h3><?= htmlspecialchars($row["Username"], ENT_QUOTES) ?></h3> <table class="bio"> <tr> - <th><?= __("Username") . ":" ?></td> + <th><?= __("Username") . ":" ?></th> <td><?= $row["Username"] ?></td> </tr> <tr> - <th><?= __("Account Type") . ":" ?></td> + <th><?= __("Account Type") . ":" ?></th> <td> <?php if ($row["AccountType"] == "User") { @@ -22,23 +22,23 @@ </td> </tr> <tr> - <th><?= __("Email Address") . ":" ?></td> + <th><?= __("Email Address") . ":" ?></th> <td><a href="mailto:<?= htmlspecialchars($row["Email"], ENT_QUOTES) ?>"><?= htmlspecialchars($row["Email"], ENT_QUOTES) ?></a></td> </tr> <tr> - <th><?= __("Real Name") . ":" ?></td> + <th><?= __("Real Name") . ":" ?></th> <td><?= htmlspecialchars($row["RealName"], ENT_QUOTES) ?></td> </tr> <tr> - <th><?= __("IRC Nick") . ":" ?></td> + <th><?= __("IRC Nick") . ":" ?></th> <td><?= htmlspecialchars($row["IRCNick"], ENT_QUOTES) ?></td> </tr> <tr> - <th><?= __("PGP Key Fingerprint") . ":" ?></td> + <th><?= __("PGP Key Fingerprint") . ":" ?></th> <td><?= html_format_pgp_fingerprint($row["PGPKey"]) ?></td> </tr> <tr> - <th><?= __("Last Voted") . ":" ?></td> + <th><?= __("Last Voted") . ":" ?></th> <td> <?= $row["LastVoted"] ? date("Y-m-d", $row["LastVoted"]) : __("Never"); ?> </td> |