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

(-)a/C4/Serials.pm (-8 lines)
Lines 1545-1557 sub ReNewSubscription { Link Here
1545
    |;
1545
    |;
1546
    $sth = $dbh->prepare($query);
1546
    $sth = $dbh->prepare($query);
1547
    $sth->execute( $enddate, $subscriptionid );
1547
    $sth->execute( $enddate, $subscriptionid );
1548
    $query = qq|
1549
        UPDATE subscriptionhistory
1550
        SET    histenddate=?
1551
        WHERE  subscriptionid=?
1552
    |;
1553
    $sth = $dbh->prepare($query);
1554
    $sth->execute( $enddate, $subscriptionid );
1555
1548
1556
    logaction( "SERIAL", "RENEW", $subscriptionid, "" ) if C4::Context->preference("SubscriptionLog");
1549
    logaction( "SERIAL", "RENEW", $subscriptionid, "" ) if C4::Context->preference("SubscriptionLog");
1557
    return;
1550
    return;
1558
- 

Return to bug 7728