summaryrefslogtreecommitdiffstats
path: root/query.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-09-18 08:28:22 +0200
committergerv%gerv.net <>2002-09-18 08:28:22 +0200
commitc491adcb47a55a68b7c234b03b7a3e4cd8b2fda8 (patch)
tree1e4b217ca1d33c5eb8f87321cd6fc2226bbc1210 /query.cgi
parent229bf2d0d7a6c7b48b25e4d9c08c038184340a8a (diff)
downloadbugzilla-c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8.tar.gz
bugzilla-c491adcb47a55a68b7c234b03b7a3e4cd8b2fda8.tar.xz
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 'query.cgi')
-rwxr-xr-xquery.cgi6
1 files changed, 3 insertions, 3 deletions
diff --git a/query.cgi b/query.cgi
index 2ce900767..89c63073b 100755
--- a/query.cgi
+++ b/query.cgi
@@ -363,7 +363,7 @@ $default{'querytype'} = $deforder || 'Importance';
$vars->{'default'} = \%default;
# Generate and return the UI (HTML page) from the appropriate template.
-my $format = ValidateOutputFormat($::FORM{'format'}, "search");
-print "Content-type: text/html\n\n";
-$template->process("search/$format->{'template'}", $vars)
+my $format = GetFormat("search/search", $::FORM{'format'}, $::FORM{'ctype'});
+print "Content-Type: $format->{'ctype'}\n\n";
+$template->process($format->{'template'}, $vars)
|| ThrowTemplateError($template->error());