From 2108be38077b4d0d26c655e2775cef69ed6dba5a Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 27 Sep 2006 13:24:11 +0000 Subject: [PATCH] * Use extensionId/prototype name instead of just the prototype name if a filter refers to the prototype column. Fixes bug 484 --- src/helma/objectmodel/db/Relation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Relation.java b/src/helma/objectmodel/db/Relation.java index dd540999..335618c0 100644 --- a/src/helma/objectmodel/db/Relation.java +++ b/src/helma/objectmodel/db/Relation.java @@ -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(); } } }