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

(-)a/C4/Serials.pm (-2 / +1 lines)
Lines 755-761 sub GetLatestSerials { Link Here
755
                        FROM     serial
755
                        FROM     serial
756
                        WHERE    subscriptionid = ?
756
                        WHERE    subscriptionid = ?
757
                        AND      (status =2 or status=4)
757
                        AND      (status =2 or status=4)
758
                        ORDER BY planneddate DESC LIMIT 0,$limit
758
                        ORDER BY publisheddate DESC LIMIT 0,$limit
759
                ";
759
                ";
760
    my $sth = $dbh->prepare($strsth);
760
    my $sth = $dbh->prepare($strsth);
761
    $sth->execute($subscriptionid);
761
    $sth->execute($subscriptionid);
762
- 

Return to bug 6655