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

(-)a/C4/Serials.pm (-8 lines)
Lines 1519-1531 sub ReNewSubscription { Link Here
1519
    |;
1519
    |;
1520
    $sth = $dbh->prepare($query);
1520
    $sth = $dbh->prepare($query);
1521
    $sth->execute( $enddate, $subscriptionid );
1521
    $sth->execute( $enddate, $subscriptionid );
1522
    $query = qq|
1523
        UPDATE subscriptionhistory
1524
        SET    histenddate=?
1525
        WHERE  subscriptionid=?
1526
    |;
1527
    $sth = $dbh->prepare($query);
1528
    $sth->execute( $enddate, $subscriptionid );
1529
1522
1530
    logaction( "SERIAL", "RENEW", $subscriptionid, "" ) if C4::Context->preference("SubscriptionLog");
1523
    logaction( "SERIAL", "RENEW", $subscriptionid, "" ) if C4::Context->preference("SubscriptionLog");
1531
    return;
1524
    return;
1532
- 

Return to bug 7728