Index: openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl,v diff -u -N -r1.12 -r1.13 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 3 Sep 2003 08:59:20 -0000 1.12 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 3 Sep 2003 12:37:40 -0000 1.13 @@ -238,7 +238,7 @@ set authority_id [auth::authority::local] - set create_info [auth::registration::Register \ + array set create_info [auth::registration::Register \ -authority_id $authority_id \ -username $username \ -password $password \ @@ -249,6 +249,8 @@ -secret_question $secret_question \ -secret_answer $secret_answer] + return [array get create_info] + # TODO: Check that return codes are correct # If we ever create remote users, make sure we concatenate any account messages and local account messages @@ -262,7 +264,7 @@ Get the list of required/optional elements for user registration. @return Array-list with two entries, both being a subset of - (username, password, first_names, last_name, email, url, secret_question, secret_answer). + (username, password_1, password_2, first_names, last_name, email, url, secret_question, secret_answer).