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

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

Return to bug 7728