version 1.10, 2006/03/21 18:32:59
|
version 1.12, 2006/03/29 16:22:46
|
Line 464 sub group_administration {
|
Line 464 sub group_administration {
|
} |
} |
} |
} |
|
|
if ($action eq 'create') { |
if (($action eq 'create') || |
|
($action eq 'modify' && $state eq 'pick_members')) { |
if (defined($env{'form.types'})) { |
if (defined($env{'form.types'})) { |
@types=&Apache::loncommon::get_env_multiple('form.types'); |
@types=&Apache::loncommon::get_env_multiple('form.types'); |
} |
} |
Line 952 sub display_control {
|
Line 953 sub display_control {
|
sub header { |
sub header { |
my ($bodytitle,$jscript,$action,$state,$page,$function,$loaditems) = @_; |
my ($bodytitle,$jscript,$action,$state,$page,$function,$loaditems) = @_; |
my $start_page= |
my $start_page= |
&Apache::loncommon::start_page($bodytitle,$jscript, |
&Apache::loncommon::start_page($bodytitle, |
|
'<script type="text/javascript">'. |
|
$jscript.'</script>', |
{'function' => $function, |
{'function' => $function, |
'add_entries' => $loaditems,}); |
'add_entries' => $loaditems,}); |
my $output = <<"END"; |
my $output = <<"END"; |
$bodytag |
$start_page |
<form method="POST" name="$state"> |
<form method="POST" name="$state"> |
|
|
END |
END |