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

(-)a/C4/Serials.pm (-2 / +1 lines)
Lines 741-747 sub GetLatestSerials { Link Here
741
                        FROM     serial
741
                        FROM     serial
742
                        WHERE    subscriptionid = ?
742
                        WHERE    subscriptionid = ?
743
                        AND      (status =2 or status=4)
743
                        AND      (status =2 or status=4)
744
                        ORDER BY planneddate DESC LIMIT 0,$limit
744
                        ORDER BY publisheddate DESC LIMIT 0,$limit
745
                ";
745
                ";
746
    my $sth = $dbh->prepare($strsth);
746
    my $sth = $dbh->prepare($strsth);
747
    $sth->execute($subscriptionid);
747
    $sth->execute($subscriptionid);
748
- 

Return to bug 6655