mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
c34bebf428
commit
7f9e498e48
14 changed files with 170 additions and 154 deletions
|
@ -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 ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue