made the "create username/password"-part work with the newer snapshots.

This commit is contained in:
stefanp 2002-06-20 17:21:21 +00:00
parent 32663df930
commit 2daf832db0

View file

@ -219,10 +219,10 @@ function createAuth() {
} else { } else {
// no input from webform, so print it // no input from webform, so print it
res.reset(); res.reset();
res.skin = "basic"; res.data.title = "username & password on " + root.hostname_macro();
res.title = "username & password on " + root.hostname_macro(); res.data.head = renderSkinAsString("head");
res.head = renderSkinAsString("head"); res.data.body = renderSkinAsString("pwdform",obj);
res.body = renderSkinAsString("pwdform",obj); renderSkin("basic");
return false; return false;
} }
} }