summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-11-16 18:11:55 +0000
committerSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-12-11 21:14:02 +0000
commit798dea20330d06690fcff11cf46aa64605b375d1 (patch)
tree3d66e42e8325a8ab79200aaae10368e579688e5e /IkiWiki
parent29862a8cc8fb9818bbc219955c2b0c5e64a640ce (diff)
smcvpostcomment: reduce length of subject field
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/smcvpostcomment.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/smcvpostcomment.pm b/IkiWiki/Plugin/smcvpostcomment.pm
index f224944d5..59f0e8cfc 100644
--- a/IkiWiki/Plugin/smcvpostcomment.pm
+++ b/IkiWiki/Plugin/smcvpostcomment.pm
@@ -149,7 +149,7 @@ sub sessioncgi ($$) { #{{{
$form->field(name => 'sid', type => 'hidden', value => $session->id,
force => 1);
$form->field(name => 'page', type => 'hidden');
- $form->field(name => 'subject', type => 'text', size => 80);
+ $form->field(name => 'subject', type => 'text', size => 72);
$form->field(name => 'body', type => 'textarea', rows => 5,
cols => 80);