Changeset 202 for trunk/dns.cgi


Ignore:
Timestamp:
12/15/11 17:18:17 (12 years ago)
Author:
Kris Deugau
Message:

/trunk

Fix bug in SOA handling; Vega stores "contact:primary-ns" in the
host field, not "primary-ns:contact"... so we do too until we come
up with a completely different and better way to handle SOA records.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns.cgi

    r201 r202  
    744744        " SET host=?, val=?, ttl=? WHERE record_id=?";
    745745  $sth = $dbh->prepare($sql);
    746   $sth->execute("$webvar{prins}:$webvar{contact}",
     746  $sth->execute("$webvar{contact}:$webvar{prins}",
    747747        "$webvar{refresh}:$webvar{retry}:$webvar{expire}:$webvar{minttl}",
    748748        $webvar{ttl},
Note: See TracChangeset for help on using the changeset viewer.