Fixed renderSkincalls for untyped objects (virtual, groupby etc).

They are needed in Robert's inspector, for instance.
This commit is contained in:
hns 2001-05-04 11:40:13 +00:00
parent 2caa611434
commit 8bf1a54727

View file

@ -724,6 +724,8 @@ public class RequestEvaluator implements Runnable {
}
private Skin getSkinFromNode (INode node, String prototype, String skinname) {
if (prototype == null)
return null;
INode n = node.getNode (prototype, false);
if (n != null) {
n = n.getNode (skinname, false);