From 65686330fc11e75280d4eaf8393b82270d2c598a Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 5 Jul 2002 15:05:55 +0000 Subject: [PATCH] Update the prototype before returning the skinfiles. --- src/helma/framework/core/ApplicationBean.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helma/framework/core/ApplicationBean.java b/src/helma/framework/core/ApplicationBean.java index bfa93832..cf1edc02 100644 --- a/src/helma/framework/core/ApplicationBean.java +++ b/src/helma/framework/core/ApplicationBean.java @@ -163,6 +163,7 @@ public class ApplicationBean implements Serializable { Map skinz = new Hashtable (); for (Iterator it = app.getPrototypes().iterator(); it.hasNext(); ) { Prototype p = (Prototype) it.next (); + app.typemgr.updatePrototype (p); Map proto = new Hashtable (); for (Iterator it2 = p.skins.values().iterator(); it2.hasNext(); ) { SkinFile sf = (SkinFile) it2.next ();