Skip to content

Commit

Permalink
fixes formNODE.pl (issue IPGP#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
beaudu committed Sep 30, 2019
1 parent dfeed4b commit c039c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CODE/cgi-bin/formNODE.pl
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ =head1 Query string parameters
$chan{$chpCLB[2]} = "$chpCLB[3] ($chpCLB[6] $chpCLB[19])";
}
print "<SELECT name=\"chanlist\" multiple size=\"5\" onMouseOut=\"nd()\" onmouseover=\"overlib('$__{help_creationstation_chanlist}')\" id=\"chanlist\">";
for (sort(keys(%chan))) {
for (sort{ $a <=> $b } (keys(%chan))) {
print "<option".($_ ~~ @select || !defined($usrCHAN) ? " selected":"")." value=\"$_\">"."$_: $chan{$_}</option>\n";
}
print "</SELECT>";
Expand Down

0 comments on commit c039c9d

Please sign in to comment.