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

(-)a/C4/Circulation.pm (-1 / +2 lines)
Lines 3376-3382 sub GetTransfersFromTo { Link Here
3376
        FROM   branchtransfers
3376
        FROM   branchtransfers
3377
        WHERE  frombranch=?
3377
        WHERE  frombranch=?
3378
          AND  tobranch=?
3378
          AND  tobranch=?
3379
          AND datesent IS NOT NULL
3379
          AND datearrived IS NULL
3380
          AND datearrived IS NULL
3381
          AND datecancelled IS NULL
3380
    ";
3382
    ";
3381
    my $sth = $dbh->prepare($query);
3383
    my $sth = $dbh->prepare($query);
3382
    $sth->execute( $frombranch, $tobranch );
3384
    $sth->execute( $frombranch, $tobranch );
3383
- 

Return to bug 22569