Changeset 774
- Timestamp:
- 07/30/19 17:05:22 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DNSDB.pm
r773 r774 2471 2471 eval { 2472 2472 # insert the domain... 2473 $dbh->do("INSERT INTO domains (domain,group_id,status,default_location ) VALUES (?,?,?,?)", undef,2474 ($domain, $group, $state, $defloc ));2473 $dbh->do("INSERT INTO domains (domain,group_id,status,default_location,zserial) VALUES (?,?,?,?,?)", undef, 2474 ($domain, $group, $state, $defloc, scalar(time()) ) ); 2475 2475 2476 2476 # get the ID... … … 2751 2751 eval { 2752 2752 # insert the zone... 2753 $dbh->do("INSERT INTO revzones (revnet,group_id,status,default_location ) VALUES (?,?,?,?)", undef,2754 ($zone, $group, $state, $defloc ) );2753 $dbh->do("INSERT INTO revzones (revnet,group_id,status,default_location,zserial) VALUES (?,?,?,?,?)", undef, 2754 ($zone, $group, $state, $defloc, scalar(time()) ) ); 2755 2755 2756 2756 # get the ID...
Note:
See TracChangeset
for help on using the changeset viewer.