Missed an important element in the if statement

git-svn-id: svn://10.0.0.236/trunk@213761 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ghendricks%novell.com
2006-10-17 22:26:10 +00:00
parent d583461c3f
commit 6cb6e39e9d

View File

@@ -680,7 +680,7 @@ sub init {
foreach my $profile ("author", "manager", "default_tester",
"assignee", "testedby"){
$t = $cgi->param($profile . "_type") || '';
if ($t eq "exact" || '') {
if ($t eq "exact" || $t eq '') {
$t = "anyexact";
foreach my $name (split(',', $cgi->param($profile))) {
$name = trim($name);