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

@ -8,6 +8,7 @@
- Clicking active version tag in sidebar opens up version tag edit screen
- fix: wrong ssl link in iTransact settings
- fix thumbnail script with Graphics::Magick
- fix ordering of statuses in In/Out board
7.4.5
- fix: Apostrophy incorrectly escaped as double quote in some places

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 "";