Checking in patch for bug #44641, patch from Ian Wells

This commit is contained in:
tara%tequilarista.org 2001-10-31 04:20:28 +00:00
parent 6bddfa73c0
commit bfc39645e6

View File

@ -172,6 +172,8 @@ sub query_checkins {
$::query_filetype ||= "exact";
if ($::query_filetype eq 'regexp') {
$qstring .= " and files.file regexp $q";
} elsif ($::query_filetype eq 'notregexp') {
$qstring .= " and not (files.file regexp $q)";
} else {
$qstring .= " and files.file = $q";
}