diff options
author | 2002-09-18 06:28:22 +0000 | |
---|---|---|
committer | 2002-09-18 06:28:22 +0000 | |
commit | c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8 (patch) | |
tree | 1e4b217ca1d33c5eb8f87321cd6fc2226bbc1210 /post_bug.cgi | |
parent | Bug 25521 - Keyword field in new bug entry. Patch by jeff.hedlund@matrixsi.co... (diff) | |
download | bugzilla-c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8.tar.gz bugzilla-c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8.tar.bz2 bugzilla-c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8.zip |
Bug 146495 - clean up format ambiguities. We now have separate "format" and "ctype" parameters. Also fixes bug 140513, bug 143604, and bug 148133. Patch by gerv; r=myk.
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 8d21f1505..430ae37a8 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -59,11 +59,9 @@ my $comment; $vars->{'form'} = \%::FORM; -# We can't use ValidateOutputFormat here because it defaults to HTML. -my $template_name = "bug/create/comment"; -$template_name .= ($::FORM{'format'} ? "-$::FORM{'format'}" : ""); +my $format = GetFormat("bug/create/comment", $::FORM{'format'}, "txt"); -$template->process("$template_name.txt.tmpl", $vars, \$comment) +$template->process($format->{'template'}, $vars, \$comment) || ThrowTemplateError($template->error()); ValidateComment($comment); |