diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-03-11 18:54:44 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-03-11 19:00:50 +0100 |
commit | 7f9e498e48c4e5d056ee988a23dedb8ca98b11cd (patch) | |
tree | 2207b70001651eca6ac8f9500ec679e8edf98382 /web/template/tu_details.php | |
parent | c34bebf42859019998c7ff3c03b570295ae83ebe (diff) | |
download | aur-7f9e498e48c4e5d056ee988a23dedb8ca98b11cd.tar.gz aur-7f9e498e48c4e5d056ee988a23dedb8ca98b11cd.tar.xz |
Fix broken XHTML.
Fix a lot of invalid XHTML in the templates and actions. There might
still be some legacy code left, but this should cover most of it.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r-- | web/template/tu_details.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index 315e1b90..7d6c305d 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -65,10 +65,12 @@ if (!$isrunning) { ?> <div class='pgboxbody'> <?php if ($canvote == 1) { ?> <form action='tu.php?id=<?php print $row['ID'] ?>' method='post'> -<input type='submit' class='button' name='voteYes' value='<?php print __("Yes") ?>'> -<input type='submit' class='button' name='voteNo' value='<?php print __("No") ?>'> -<input type='submit' class='button' name='voteAbstain' value='<?php print __("Abstain") ?>'> -<input type='hidden' name='doVote' value='1'> +<fieldset> +<input type='submit' class='button' name='voteYes' value='<?php print __("Yes") ?>' /> +<input type='submit' class='button' name='voteNo' value='<?php print __("No") ?>' /> +<input type='submit' class='button' name='voteAbstain' value='<?php print __("Abstain") ?>' /> +<input type='hidden' name='doVote' value='1' /> +</fieldset> </form> <?php } else { ?> <?php print $errorvote ?> |