|
Lines 1453-1460
sub NewSubscription {
Link Here
|
| 1453 |
# then create the 1st expected number |
1453 |
# then create the 1st expected number |
| 1454 |
$query = qq( |
1454 |
$query = qq( |
| 1455 |
INSERT INTO subscriptionhistory |
1455 |
INSERT INTO subscriptionhistory |
| 1456 |
(biblionumber, subscriptionid, histstartdate) |
1456 |
(biblionumber, subscriptionid, histstartdate, missinglist, recievedlist) |
| 1457 |
VALUES (?,?,?) |
1457 |
VALUES (?,?,?, '', '') |
| 1458 |
); |
1458 |
); |
| 1459 |
$sth = $dbh->prepare($query); |
1459 |
$sth = $dbh->prepare($query); |
| 1460 |
$sth->execute( $biblionumber, $subscriptionid, $startdate); |
1460 |
$sth->execute( $biblionumber, $subscriptionid, $startdate); |
| 1461 |
- |
|
|