Changeset 621 for branches/stable/cgi-bin/search.cgi
- Timestamp:
- 07/04/14 13:18:11 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/cgi-bin/search.cgi
r620 r621 148 148 # Columns actually returned. Slightly better than hardcoding it 149 149 # in each (sub)select 150 my $cols = "cidr,custid,type,city,description,vrf ";150 my $cols = "cidr,custid,type,city,description,vrf,available"; 151 151 152 152 # hack fix for undefined variables … … 351 351 # which probably shouldn't be for reasons of sanity. 352 352 353 my $cols = "cidr,custid,type,city,description,vrf ";353 my $cols = "cidr,custid,type,city,description,vrf,available"; 354 354 355 355 if ($category eq 'all') { … … 478 478 desc => $desc, 479 479 vrf => $vrf, 480 avail => $avail eq 'y',480 avail => ($avail eq 'y' ? 1 : 0), 481 481 ); 482 482 push @sresults, \%row;
Note:
See TracChangeset
for help on using the changeset viewer.