View | Details | Raw Unified | Return to bug 6088
Collapse All | Expand All

(-)a/acqui/neworderempty.pl (-2 / +1 lines)
Lines 243-249 foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$ Link Here
243
        value      => $thisbranch,
243
        value      => $thisbranch,
244
        branchname => $branches->{$thisbranch}->{'branchname'},
244
        branchname => $branches->{$thisbranch}->{'branchname'},
245
    );
245
    );
246
    $row{'selected'} = 1 if( $thisbranch eq $data->{branchcode}) ;
246
    $row{'selected'} = 1 if( $thisbranch && $data->{branchcode} && $thisbranch eq $data->{branchcode}) ;
247
    push @branchloop, \%row;
247
    push @branchloop, \%row;
248
}
248
}
249
$template->param( branchloop => \@branchloop );
249
$template->param( branchloop => \@branchloop );
250
- 

Return to bug 6088