--- loncom/enrollment/localenroll.pm 2003/12/11 15:45:25 1.6 +++ loncom/enrollment/localenroll.pm 2003/12/11 19:01:33 1.7 @@ -1,6 +1,6 @@ # functions to glue school database system into Lon-CAPA for # automated enrollment -# $Id: localenroll.pm,v 1.6 2003/12/11 15:45:25 albertel Exp $ +# $Id: localenroll.pm,v 1.7 2003/12/11 19:01:33 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -135,13 +135,12 @@ sub run { return 0; } ################################ sub fetch_enrollment { - my ($dom,$affiliatesref,$replyref) = @_; - foreach my $crs (sort keys %{$affiliatesref}) { - $$replyref{$crs} = 0; - } - } - my $okflag = 0; - return $okflag; + my ($dom,$affiliatesref,$replyref) = @_; + foreach my $crs (sort keys %{$affiliatesref}) { + $$replyref{$crs} = 0; + } + my $okflag = 0; + return $okflag; } ###############################