* 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>
  (merging to helma_1_5 from HEAD)
This commit is contained in:
hns 2006-10-23 18:34:23 +00:00
parent 1b32fa7cee
commit c0cc7a633d

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();
}
}
}