Commit b8466702 authored by gerv%gerv.net's avatar gerv%gerv.net

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

parent 7bb05f06
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment