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:
parent
42e2552fbe
commit
277d20ac2e
1 changed files with 7 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue