--- trunk/lib/BackupPC/SearchLib.pm 2005/08/28 14:15:01 88 +++ trunk/lib/BackupPC/SearchLib.pm 2005/08/28 17:53:46 91 @@ -196,8 +196,10 @@ my $shareid = $param->{'search_share'}; if (length($q) > 0) { - $q =~ s/(.)/$1 /g; + # exact match + $cond->add_attr("filepath ISTRINC $q"); + $q =~ s/(.)/$1 /g; # set the search phrase to the search condition object $cond->set_phrase($q); }