diff options
author | Robert Haas | 2009-07-03 23:42:02 +0000 |
---|---|---|
committer | Robert Haas | 2009-07-03 23:42:02 +0000 |
commit | 2aec1f66cb27bd3452592003a68e614fab220df1 (patch) | |
tree | c44afd28a8489cd53f7965ea2cd82cfe2eecfbf9 /perl-lib | |
parent | 478724aae61a7ea89f2886550590c05f8b942581 (diff) |
Change "content" control on patch comment form to a text area.
Also, a few further adjustments to patch formatting.
Diffstat (limited to 'perl-lib')
-rw-r--r-- | perl-lib/PgCommitFest/PatchComment.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-lib/PgCommitFest/PatchComment.pm b/perl-lib/PgCommitFest/PatchComment.pm index 78f3a79..101a784 100644 --- a/perl-lib/PgCommitFest/PatchComment.pm +++ b/perl-lib/PgCommitFest/PatchComment.pm @@ -71,7 +71,7 @@ EOM SELECT id, name FROM patch_comment_type ORDER BY id EOM $r->add_control('message_id', 'text', 'Message-ID', 'maxlength' => 255); - $r->add_control('content', 'text', 'Content', 'required' => 1); + $r->add_control('content', 'textarea', 'Content', 'required' => 1); my %value = $r->initialize_controls($d); # Handle commit. |