Changeset 482


Ignore:
Timestamp:
03/14/13 15:37:57 (11 years ago)
Author:
Kris Deugau
Message:

/trunk

Missed a cal to getDomRecs() in r481; see #11.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/textrecs.cgi

    r473 r482  
    7474print qq(Press the "Back" button to return to the standard record list.\n\n);
    7575
    76 my $reclist = getDomRecs($dbh, (defrec => $webvar{defrec}, revrec => $webvar{revrec}, id => $webvar{id},
    77         sortby => ($webvar{revrec} eq 'n' ? 'type,host' : 'type,val'), sortorder => 'ASC') );
     76my $reclist = $dnsdb->getDomRecs(defrec => $webvar{defrec}, revrec => $webvar{revrec}, id => $webvar{id},
     77        sortby => ($webvar{revrec} eq 'n' ? 'type,host' : 'type,val'), sortorder => 'ASC');
    7878foreach my $rec (@$reclist) {
    7979  $rec->{type} = $typemap{$rec->{type}};
Note: See TracChangeset for help on using the changeset viewer.