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.11 -r1.12 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 2 Sep 2003 14:20:06 -0000 1.11 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 3 Sep 2003 08:59:20 -0000 1.12 @@ -847,7 +847,7 @@ # Remote recovery requires username and authority so we fail set forgotten_pwd_url "" } else { - set forgotten_pwd_url "[subsite::get_element -element url]register/forgotten-password" + set forgotten_pwd_url "[subsite::get_element -element url]register/recover-password" } } Index: openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl,v diff -u -N -r1.11 -r1.12 --- openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 2 Sep 2003 13:04:54 -0000 1.11 +++ openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 3 Sep 2003 08:59:20 -0000 1.12 @@ -307,7 +307,7 @@ # With user info set url [auth::password::get_forgotten_url -authority_id $test_vars(authority_id) -username $test_vars(username)] - aa_true "there is a local forgotten-password page with user info ($url)" [regexp {recover-password} $url] + aa_true "there is a local recover-password page with user info ($url)" [regexp {recover-password} $url] set url [auth::password::get_forgotten_url -authority_id $test_vars(authority_id) -username $test_vars(username) -remote_only] aa_equals "cannot get remote url with missing forgotten_pwd_url" $url "" @@ -317,7 +317,7 @@ aa_equals "cannot get remote url without user info" $url "" set url [auth::password::get_forgotten_url -authority_id "" -username ""] - aa_true "there is a local forgotten-password page without user info" [regexp {forgotten-password} $url] + aa_true "there is a local recover-password page without user info" [regexp {recover-password} $url] } aa_register_case auth_password_retrieve {