--- loncom/interface/domainprefs.pm 2007/12/16 17:48:18 1.36 +++ loncom/interface/domainprefs.pm 2007/12/21 04:47:24 1.37 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set domain-wide configuration settings # -# $Id: domainprefs.pm,v 1.36 2007/12/16 17:48:18 raeburn Exp $ +# $Id: domainprefs.pm,v 1.37 2007/12/21 04:47:24 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1333,6 +1333,8 @@ sub print_usercreation { } } elsif ($position eq 'middle') { my @creators = ('author','course'); + my ($rules,$ruleorder) = + &Apache::lonnet::inst_userrules($dom,'username'); my %lt = &usercreation_types(); my %checked; if (ref($settings) eq 'HASH') { @@ -1363,7 +1365,14 @@ sub print_usercreation { $datatable .= ''. ''.$lt{$item}. ''; - foreach my $option ('any','official','unofficial','none') { + my @options = ('any'); + if (ref($rules) eq 'HASH') { + if (keys(%{$rules}) > 0) { + push(@options,('official','unofficial')); + } + } + push(@options,'none'); + foreach my $option (@options) { my $check = ' '; if ($checked{$item} eq $option) { $check = ' checked="checked" '; @@ -2109,7 +2118,7 @@ sub check_configuser { sub check_authorstatus { my ($dom,$confname,%currroles) = @_; my $author_ok; - if (!$currroles{':'.$dom.':au'}) { + if (!$currroles{$confname.':'.$dom.':au'}) { my $start = time; my $end = 0; $author_ok =