mirror of
https://github.com/samba-team/samba.git
synced 2025-03-09 08:58:35 +03:00
r9177: setup a credentials object in authinfo on login
(This used to be commit c1ef18a590d2f7af4b64c1775376a05da80ac242)
This commit is contained in:
parent
9f4444331a
commit
c28816e74b
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user