--- loncom/enrollment/localenroll.pm 2011/05/23 19:11:41 1.42 +++ loncom/enrollment/localenroll.pm 2011/10/14 17:13:25 1.43 @@ -1,6 +1,6 @@ # functions to glue school database system into Lon-CAPA for # automated enrollment -# $Id: localenroll.pm,v 1.42 2011/05/23 19:11:41 raeburn Exp $ +# $Id: localenroll.pm,v 1.43 2011/10/14 17:13:25 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -735,6 +735,9 @@ sub instcode_defaults { keys will be unique IDs (student or faculty/staff ID) values will be either: scalar (username) or an array if a single ID matches multiple usernames. + (d) $lc_users - reference to hash containing LON-CAPA usernames in + in domain $dom, as keys. Needed if institutional + data source only allows query by username. returns 1 parameter - 'ok' if no processing error, or other value if an error occurred. side effects - populates the $instusers and $instids refs to hashes. @@ -745,7 +748,7 @@ sub instcode_defaults { =cut sub allusers_info { - my ($dom,$instusers,$instids) = @_; + my ($dom,$instusers,$instids,$lc_users) = @_; my $outcome = 'ok'; return $outcome; }