We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a7dcd commit cec4da3Copy full SHA for cec4da3
1 file changed
DocDB/cgi/AdministerElements.pm
@@ -29,13 +29,10 @@ sub AdministerActions (%) {
29
my $Form = $Params{-form} || "";
30
my $AddTransfer = $Params{-addTransfer} || $FALSE;
31
32
- my %Action = ();
+ my @Action = ('New', 'Delete', 'Modify');
33
34
- $Action{Delete} = "Delete";
35
- $Action{New} = "New";
36
- $Action{Modify} = "Modify";
37
if ($AddTransfer) {
38
- $Action{Transfer} = "Transfer";
+ unshift( @Action, "Transfer" );
39
}
40
print FormElementTitle(-helplink => "admaction", -helptext => "Action");
41
print $query -> radio_group(-name => "admaction",
0 commit comments