Fix for bug 150703: Adds format support to query.cgi.

2rx=gerv
This commit is contained in:
myk%mozilla.org 2002-06-10 22:38:48 +00:00
Родитель 1012e19512
Коммит e7ab4e4520
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -376,6 +376,8 @@ $default{'querytype'} = $deforder || 'Importance';
$vars->{'default'} = \%default;
# Generate and return the UI (HTML page) from the appropriate template.
$::FORM{'format'} ||= "classic";
my $format = ValidateOutputFormat($::FORM{'format'}, "search");
print "Content-type: text/html\n\n";
$template->process("search/search.html.tmpl", $vars)
$template->process("search/$format->{'template'}", $vars)
|| ThrowTemplateError($template->error());