- Timestamp:
- 09/23/10 20:47:50 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/htmlform/cgi-bin/main.cgi
r479 r492 1070 1070 my $sql; 1071 1071 if (my $pooltype = ($webvar{alloctype} =~ /^(.)i$/) ) { 1072 $sql = "update poolips set custid='$webvar{custid}',notes='$webvar{notes}',". 1073 "circuitid='$webvar{circid}',description='$webvar{desc}',city='$webvar{city}'". 1072 $sql = "UPDATE poolips SET custid='$webvar{custid}',". 1073 "city=?,description=?,notes=?,". 1074 "circuitid='$webvar{circid}',". 1074 1075 "$privdata where ip='$webvar{block}'"; 1075 1076 } else { 1076 $sql = "update allocations set custid='$webvar{custid}',". 1077 "description='$webvar{desc}',notes='$webvar{notes}',city='$webvar{city}',". 1078 "type='$webvar{alloctype}',circuitid='$webvar{circid}'$privdata,". 1077 $sql = "UPDATE allocations SET custid='$webvar{custid}',". 1078 "city=?,description=?,notes=?,". 1079 "circuitid='$webvar{circid}'$privdata,". 1080 "type='$webvar{alloctype}',". 1079 1081 "swip='".($webvar{swip} eq 'on' ? 'y' : 'n')."' ". 1080 1082 "where cidr='$webvar{block}'"; … … 1083 1085 syslog "debug", $sql; 1084 1086 $sth = $ip_dbh->prepare($sql); 1085 $sth->execute ;1087 $sth->execute($webvar{city}, $webvar{desc}, $webvar{notes}); 1086 1088 ## node hack 1087 1089 if ($webvar{node}) { 1090 # done with delete/insert so we don't have to worry about funkyness updating a node ref that isn't there 1088 1091 $ip_dbh->do("DELETE FROM noderef WHERE block='$webvar{block}'"); 1089 1092 $sth = $ip_dbh->prepare("INSERT INTO noderef (block,node_id) VALUES (?,?)");
Note:
See TracChangeset
for help on using the changeset viewer.