Index: openacs-4/packages/acs-authentication/tcl/local-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/local-procs.tcl,v diff -u -N -r1.36 -r1.37 --- openacs-4/packages/acs-authentication/tcl/local-procs.tcl 9 Oct 2008 15:33:02 -0000 1.36 +++ openacs-4/packages/acs-authentication/tcl/local-procs.tcl 8 Oct 2009 14:33:46 -0000 1.37 @@ -616,3 +616,27 @@ return [list] } +ad_proc -private auth::local::search::Search { + search_text + {parameters ""} +} { + Implements the Search operation of the auth_search + service contract for the local account implementation. +} { + + set results [list] + db_foreach user_search {} { + lappend results $user_id + } + + return $results + +} + +ad_proc -private auth::local::search::GetParameters {} { + Implements the GetParameters operation of the auth_search + service contract for the local account implementation. +} { + # No parameters + return [list] +}