diff options
author | canyonknight <canyonknight@gmail.com> | 2012-10-10 22:25:52 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-11 21:19:20 +0200 |
commit | 350c9a9579d00a477042f1422279c2e97263afee (patch) | |
tree | 4e9c36763c7f203da753c8c4e05ddd1c4a5e9819 /web/template | |
parent | aef6fdfe17ffccdb0da262deef6726f1caaa2172 (diff) | |
download | aur-350c9a9579d00a477042f1422279c2e97263afee.tar.gz aur-350c9a9579d00a477042f1422279c2e97263afee.tar.xz |
pkg_comment_form.php: Remove redundant label for the comment box
Comment box already uses <h2> tag. Additional label is not needed.
Also remove label for form submit button.
Reported-by: Dave Reisner <d@falconindy.com>
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/pkg_comment_form.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/web/template/pkg_comment_form.php b/web/template/pkg_comment_form.php index 9315b0af..903173d2 100644 --- a/web/template/pkg_comment_form.php +++ b/web/template/pkg_comment_form.php @@ -12,11 +12,9 @@ if (isset($_REQUEST['comment']) && check_token()) { <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> </div> <p> - <label for="id_comment"><?= __("Comment") . ':' ?></label> <textarea id="id_comment" name="comment" cols="80" rows="10"></textarea> </p> <p> - <label></label> <input type="submit" value="<?= __("Add Comment") ?>" /> </p> </fieldset> |