From c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Wed, 18 Sep 2002 06:28:22 +0000 Subject: 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. --- enter_bug.cgi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'enter_bug.cgi') diff --git a/enter_bug.cgi b/enter_bug.cgi index 7aa6dfc66..a779aa85d 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -382,8 +382,9 @@ if ($::usergroupset ne '0') { $vars->{'default'} = \%default; -my $format = ValidateOutputFormat($::FORM{'format'}, "create", "bug/create"); +my $format = + GetFormat("bug/create/create", $::FORM{'format'}, $::FORM{'ctype'}); -print "Content-type: $format->{'contenttype'}\n\n"; -$template->process("bug/create/$format->{'template'}", $vars) +print "Content-type: $format->{'ctype'}\n\n"; +$template->process($format->{'template'}, $vars) || ThrowTemplateError($template->error()); -- cgit v1.2.3-24-g4f1b