Catch the case where branchtype isn't set.

Bug #272511
This commit is contained in:
cls%seawood.org 2004-12-01 05:47:35 +00:00
Родитель 08c39742f1
Коммит ec170d8ac8
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -181,8 +181,7 @@ $::query_branch = 'HEAD' if !defined($::query_branch);
$::query_branch = &SanitizeRevision($::query_branch);
$::query_branchtype = &ExpectMatchtype($::FORM{'branchtype'});
if ($::query_branch eq 'HEAD' &&
($::query_branchtype eq 'match' || $::query_branchtype eq 'regexp')) {
if ($::query_branch eq 'HEAD' && $::query_branchtype ne 'notregexp') {
$::query_branch_head = 1 ;
}