editpage: Rename "comments" field to avoid CSS conflict with the comments div.

master
Joey Hess 2010-06-12 18:10:33 -04:00
parent d7cfcef54a
commit 31fa7714e7
3 changed files with 9 additions and 7 deletions

View File

@ -64,7 +64,7 @@ sub cgi_editpage ($$) {
decode_cgi_utf8($q);
my @fields=qw(do rcsinfo subpage from page type editcontent comments);
my @fields=qw(do rcsinfo subpage from page type editcontent editmessage);
my @buttons=("Save Page", "Preview", "Cancel");
eval q{use CGI::FormBuilder};
error($@) if $@;
@ -144,7 +144,7 @@ sub cgi_editpage ($$) {
$form->field(name => "subpage", type => 'hidden');
$form->field(name => "page", value => $page, force => 1);
$form->field(name => "type", value => $type, force => 1);
$form->field(name => "comments", type => "text", size => 80);
$form->field(name => "editmessage", type => "text", size => 80);
$form->field(name => "editcontent", type => "textarea", rows => 20,
cols => 80);
$form->tmpl_param("can_commit", $config{rcs});
@ -353,9 +353,9 @@ sub cgi_editpage ($$) {
}
my $message="";
if (defined $form->field('comments') &&
length $form->field('comments')) {
$message=$form->field('comments');
if (defined $form->field('editmessage') &&
length $form->field('editmessage')) {
$message=$form->field('editmessage');
}
my $content=$form->field('editcontent');

2
debian/changelog vendored
View File

@ -4,6 +4,8 @@ ikiwiki (3.20100611) UNRELEASED; urgency=low
useful in a few edge case setups.
* attachment: Show files from underlay in attachments list.
* img: Support hspace and vspace attributes.
* editpage: Rename "comments" field to avoid CSS conflict with the
comments div.
-- Joey Hess <joeyh@debian.org> Fri, 11 Jun 2010 13:39:15 -0400

View File

@ -23,8 +23,8 @@
</li>
<TMPL_IF NAME="CAN_COMMIT">
<li>
<label for="comments" class="block">Optional comment about this change:</label>
<TMPL_VAR FIELD-COMMENTS><br />
<label for="editmessage" class="block">Optional comment about this change:</label>
<TMPL_VAR FIELD-EDITMESSAGE><br />
</li>
</TMPL_IF>
</ol>