Fix bug <http://helma.org/bugs/show_bug.cgi?id=304>, skins in zip files not present in skin map.

This commit is contained in:
hns 2003-12-02 16:57:25 +00:00
parent 42e2552fbe
commit 277d20ac2e

View file

@ -557,7 +557,13 @@ public final class Prototype {
super.clear();
// System.err.println ("LOADING SKIN VALUES: "+Prototype.this);
// load Skins from zip files first, then from directories
for (Iterator i = zippedSkins.entrySet().iterator(); i.hasNext();) {
Map.Entry e = (Map.Entry) i.next();
super.put(e.getKey(), e.getValue());
}
for (Iterator i = skins.entrySet().iterator(); i.hasNext();) {
Map.Entry e = (Map.Entry) i.next();