Changeset 588 for trunk/cgi-bin
- Timestamp:
- 01/17/13 17:25:46 (12 years ago)
- Location:
- trunk/cgi-bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/IPDB.pm
r587 r588 1118 1118 my @fieldlist; 1119 1119 my @vallist; 1120 foreach ('custid', 'city', 'description', 'notes', 'circuitid', 'privdata' ) {1120 foreach ('custid', 'city', 'description', 'notes', 'circuitid', 'privdata', 'rdns') { 1121 1121 if ($args{$_}) { 1122 1122 push @fieldlist, $_; … … 1173 1173 return ('FAIL', $msg); 1174 1174 } 1175 return 0; 1175 1176 _rpc('addOrUpdateRevRec', cidr => $args{block}, name => $args{rdns}, rpcuser => $args{user}); 1177 return ('OK','OK'); 1176 1178 } # end updateBlock() 1177 1179 -
trunk/cgi-bin/main.cgi
r586 r588 749 749 swip => $webvar{swip}, 750 750 rdepth => $webvar{rdepth}, 751 rdns => $webvar{rdns}, 752 user => $authuser, 751 753 ); 752 754 … … 796 798 797 799 $page->param(cidr => $webvar{block}); 800 $page->param(rdns => $webvar{rdns}); 798 801 $page->param(city => $webvar{city}); 799 802 $page->param(disptype => $disp_alloctypes{$webvar{alloctype}});
Note:
See TracChangeset
for help on using the changeset viewer.