diff --git a/src/helma/framework/core/HopExtension.java b/src/helma/framework/core/HopExtension.java index 63c0643c..52f9069c 100644 --- a/src/helma/framework/core/HopExtension.java +++ b/src/helma/framework/core/HopExtension.java @@ -671,9 +671,8 @@ public class HopExtension { ArrayPrototype theArray = new ArrayPrototype(ap, this.evaluator); int i=0; for (Enumeration e=users.properties (); e.hasMoreElements (); ) { - IProperty prop = (IProperty) e.nextElement (); - if (!"prototype".equals (prop.getName ()) && prop.getType () == IProperty.NODE) - theArray.putProperty (i++, reval.getNodeWrapper (prop.getNodeValue ())); + String propname = (String) e.nextElement (); + theArray.putProperty (i++, new ESString (propname)); } return theArray; }