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/pkg_comment_form.php | |
parent | c34bebf42859019998c7ff3c03b570295ae83ebe (diff) | |
download | aurweb-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/pkg_comment_form.php')
-rw-r--r-- | web/template/pkg_comment_form.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/template/pkg_comment_form.php b/web/template/pkg_comment_form.php index 368d49b..346fb6a 100644 --- a/web/template/pkg_comment_form.php +++ b/web/template/pkg_comment_form.php @@ -57,11 +57,11 @@ if (isset($_REQUEST['comment'])) { echo '<b>' . __('Comment has been added.') . '</b>'; } ?> - <input type='hidden' name='ID' value="<?php echo $_REQUEST['ID'] ?>"> + <input type='hidden' name='ID' value="<?php echo $_REQUEST['ID'] ?>" /> <?php echo __('Enter your comment below.') ?><br /> - <textarea name='comment' rows='10' style="width: 100%"></textarea><br /> - <input type='submit' value="<?php echo __("Submit") ?>"> - <input type='reset' value="<?php echo __("Reset") ?>"> + <textarea name='comment' cols='80' rows='10' style="width: 100%"></textarea><br /> + <input type='submit' value="<?php echo __("Submit") ?>" /> + <input type='reset' value="<?php echo __("Reset") ?>" /> </div> </form> </div> |