diff options
-rw-r--r-- | swat/login.esp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/swat/login.esp b/swat/login.esp index ae9a358243..4b40793923 100644 --- a/swat/login.esp +++ b/swat/login.esp @@ -22,7 +22,6 @@ f.display(); <% if (request.REQUEST_METHOD == "POST") { - var authinfo = new Object(); authinfo.username = form.Username; authinfo.password = form.Password; @@ -33,14 +32,16 @@ f.display(); if (auth == undefined) { write("<b>Invalid login - please try again<br /></b>\n"); } else if (auth.result) { - - /* for now just authenticate everyone */ session.AUTHENTICATED = true; session.authinfo = new Object(); session.authinfo.username = auth.username; session.authinfo.domain = auth.domain; - + session.authinfo.credentials = credentials_init(); + session.authinfo.credentials.set_username(authinfo.username); + session.authinfo.credentials.set_domain(authinfo.domain); + session.authinfo.credentials.set_password(authinfo.password); + /* if the user was asking for the login page, then now redirect them to the main page. Otherwise just redirect them to the current page, which will now |