Index: openacs-4/packages/acs-authentication/tcl/sync-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/sync-procs.tcl,v diff -u -r1.9 -r1.10 --- openacs-4/packages/acs-authentication/tcl/sync-procs.tcl 10 Sep 2003 13:13:48 -0000 1.9 +++ openacs-4/packages/acs-authentication/tcl/sync-procs.tcl 10 Sep 2003 13:37:37 -0000 1.10 @@ -556,7 +556,7 @@ Parameters for HTTP GetDocument implementation. } { return { - URL {The URL from which to retrieve the document} + url {The URL from which to retrieve the document} } } @@ -573,11 +573,11 @@ array set param $parameters - set result(document) [util_httpget $param(URL)] + set result(document) [util_httpget $param(url)] set result(doc_status) "ok" - retun [array get result] + return [array get result] }