gitweb: Remove redundant $searchtype setup

Sorry, this was inadverently introduced by my grep search patch. It causes
annoying "redefined" warnings.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Petr Baudis 2007-05-19 01:12:32 +02:00 committed by Junio C Hamano
parent 760f0c62ef
commit 7f79b0173d

View File

@ -408,13 +408,6 @@ if (defined $searchtext) {
$search_regexp = quotemeta $searchtext;
}
our $searchtype = $cgi->param('st');
if (defined $searchtype) {
if ($searchtype =~ m/[^a-z]/) {
die_error(undef, "Invalid searchtype parameter");
}
}
# now read PATH_INFO and use it as alternative to parameters
sub evaluate_path_info {
return if defined $project;