Bug 138904 - post_bug templates should be separate. Patch by gerv, 2xr=myk.

This commit is contained in:
gerv%gerv.net 2002-04-28 22:05:31 +00:00
Родитель 9da43a40c0
Коммит 70b6dbe786
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -58,7 +58,11 @@ my $comment;
$vars->{'form'} = \%::FORM;
$template->process("bug/create/initial-comment.txt.tmpl", $vars, \$comment)
# We can't use ValidateOutputFormat here because it defaults to HTML.
my $template_name = "bug/create/comment";
$template_name .= ($::FORM{'format'} ? "-$::FORM{'format'}" : "");
$template->process("$template_name.txt.tmpl", $vars, \$comment)
|| ThrowTemplateError($template->error());
ValidateComment($comment);