fix order of statuses on in/out board

This commit is contained in:
Graham Knop 2007-09-07 14:35:17 +00:00
parent fff821d6e5
commit 8f1f357251
2 changed files with 3 additions and 1 deletions

View file

@ -176,7 +176,8 @@ sub view {
my $statusListString = $self->getValue("statusList");
my @statusListArray = split("\n",$statusListString);
my $statusListHashRef;
tie %$statusListHashRef, 'Tie::IxHash';
foreach my $status (@statusListArray) {
chomp($status);
next if $status eq "";