* Use extensionId/prototype name instead of just the prototype name if a filter

refers to the prototype column. Fixes bug 484 <http://helma.org/bugs/show_bug.cgi?id=484>
This commit is contained in:
hns 2006-09-27 13:24:11 +00:00
parent df7c3e0c86
commit 2108be3807

View file

@ -887,7 +887,7 @@ public final class Relation {
} else if (columnName.equals(dbmap.getNameField())) {
value = nonvirtual.getName();
} else if (columnName.equals(dbmap.getPrototypeField())) {
value = nonvirtual.getPrototype();
value = dbmap.getExtensionId();
}
}
}