From 2daf832db0224e85180a7fac4ea656d9d1d5823b Mon Sep 17 00:00:00 2001 From: stefanp Date: Thu, 20 Jun 2002 17:21:21 +0000 Subject: [PATCH] made the "create username/password"-part work with the newer snapshots. --- Global/functions.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Global/functions.js b/Global/functions.js index 14c917ad..04d5ce1a 100644 --- a/Global/functions.js +++ b/Global/functions.js @@ -219,10 +219,10 @@ function createAuth() { } else { // no input from webform, so print it res.reset(); - res.skin = "basic"; - res.title = "username & password on " + root.hostname_macro(); - res.head = renderSkinAsString("head"); - res.body = renderSkinAsString("pwdform",obj); + res.data.title = "username & password on " + root.hostname_macro(); + res.data.head = renderSkinAsString("head"); + res.data.body = renderSkinAsString("pwdform",obj); + renderSkin("basic"); return false; } }