+ # Apparently FormBuilder doesn't not treat input as
+ # utf-8, so decode from it.
+ my $content=decode_utf8($form->field('editcontent'));
+ my $comments=decode_utf8($form->field('comments'));
+ $form->field(name => "editcontent",
+ value => $content, force => 1);
+ $form->field(name => "comments",
+ value => $comments, force => 1);