*** empty log message ***

This commit is contained in:
Matthew Wilson 2005-08-25 14:44:28 +00:00
parent e723330431
commit 3d1a735050
3 changed files with 6 additions and 3 deletions

View file

@ -419,7 +419,7 @@ sub getLineage {
$where .= ' and (asset.className in ('.quoteAndJoin($rules->{includeOnlyClasses}).'))';
}
## finish up our where clause
$where .= " and ".join(" or ",@whereModifiers) if (scalar(@whereModifiers));
$where .= ' and ('.join(" or ",@whereModifiers).')' if (scalar(@whereModifiers));
if (exists $rules->{whereClause}) {
$where .= ' and ('.$rules->{whereClause}.')';
}