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

(-)a/C4/Acquisition.pm (-2 / +1 lines)
Lines 1197-1203 sub GetLastOrderReceivedFromSubscriptionid { Link Here
1197
        LIMIT 1
1197
        LIMIT 1
1198
    |;
1198
    |;
1199
    my $result_set =
1199
    my $result_set =
1200
      $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid );
1200
      $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid, $subscriptionid );
1201
1201
1202
    # result_set assumed to contain 1 match
1202
    # result_set assumed to contain 1 match
1203
    return $result_set->[0];
1203
    return $result_set->[0];
1204
- 

Return to bug 10789