--- loncom/interface/domainprefs.pm 2007/12/12 19:44:53 1.34 +++ 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.34 2007/12/12 19:44:53 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" '; @@ -1391,8 +1400,13 @@ sub print_usercreation { } } } + } else { + foreach my $item (@contexts) { + foreach my $auth (@authtypes) { + $checked{$item}{$auth} = ' checked="checked" '; + } + } } - my @authtypes = ('int','krb4','krb5','loc'); my %title = &context_names(); my %authname = &authtype_names(); my $rownum = 0; @@ -2104,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 =