merging 7.3.19 fix
This commit is contained in:
parent
b0e196bae3
commit
794da40e5c
1 changed files with 2 additions and 3 deletions
|
|
@ -1,6 +1,5 @@
|
|||
package WebGUI::Asset::Wobject::InOutBoard;
|
||||
|
||||
$VERSION = "0.5.3";
|
||||
|
||||
use strict;
|
||||
use WebGUI::HTMLForm;
|
||||
|
|
@ -175,12 +174,12 @@ sub view {
|
|||
|
||||
my $statusUserId = $self->session->scratch->get("userId") || $self->session->user->userId;
|
||||
my $statusListString = $self->getValue("statusList");
|
||||
chop($statusListString);
|
||||
my @statusListArray = split("\n",$statusListString);
|
||||
my $statusListHashRef;
|
||||
|
||||
foreach my $status (@statusListArray) {
|
||||
chop($status);
|
||||
chomp($status);
|
||||
next if $status eq "";
|
||||
$statusListHashRef->{$status} = $status;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue