* 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:
parent
df7c3e0c86
commit
2108be3807
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue