Lines 286-292
if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) {
Link Here
|
286 |
} |
286 |
} |
287 |
my $order_users_ids = $input->param('users_ids'); |
287 |
my $order_users_ids = $input->param('users_ids'); |
288 |
my @order_users = split( /:/, $order_users_ids ); |
288 |
my @order_users = split( /:/, $order_users_ids ); |
289 |
ModOrderUsers( $orderinfo->{ordernumber}, @order_users ); |
289 |
ModOrderUsers( $order->ordernumber, @order_users ); |
290 |
|
290 |
|
291 |
# now, add items if applicable |
291 |
# now, add items if applicable |
292 |
if ($basket->effective_create_items eq 'ordering') { |
292 |
if ($basket->effective_create_items eq 'ordering') { |
293 |
- |
|
|