Changeset 541 for trunk/cgi-bin/admin.cgi
- Timestamp:
 - 11/02/12 15:54:31 (13 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/cgi-bin/admin.cgi (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/cgi-bin/admin.cgi
r517 r541 106 106 $sth->execute; 107 107 108 my @typelist; 109 my $count = 0; 110 while (my ($type,$listname) = $sth->fetchrow_array) { 111 my %row = ( 112 selected => $count++, 113 type => $type, 114 dispname => $listname 115 ); 116 push @typelist, \%row; 117 } 118 $page->param(typelist => \@typelist); 119 120 my @masterlist; 121 $sth = $ip_dbh->prepare("select cidr,mtime from masterblocks order by cidr"); 122 $sth->execute; 123 while (my ($cidr,$mtime) = $sth->fetchrow_array) { 124 my %row = ( 125 master => $cidr, 126 masterdate => $mtime 127 ); 128 push @masterlist, \%row; 129 } 130 $page->param(masterlist => \@masterlist); 108 my $tlist = getTypeList($ip_dbh, 'a'); 109 $tlist->[0]->{sel} = 1; 110 $page->param(typelist => $tlist); 111 112 my $mlist = getMasterList($ip_dbh, 'm'); 113 $page->param(masterlist => $mlist); 131 114 132 115 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  ![[ DeepNet IP Database ]](/images/ipdb-logo.png)