Changeset 436
- Timestamp:
- 07/20/10 11:15:11 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/admin.cgi
r431 r436 93 93 print qq(WARNING: There are FAR fewer controls on what you can do here. Use the 94 94 main interface if at all possible. 95 <hr>96 <a href="admin.cgi?action=newalloc">Add allocation</a>97 95 <hr> 98 96 <form action="admin.cgi" method="POST"> … … 333 331 } 334 332 $sth = $ip_dbh->prepare("select custid,name,street,city,province,". 335 "country,pocode,phone,tech_handle,abuse_handle,admin_handle ".333 "country,pocode,phone,tech_handle,abuse_handle,admin_handle,special ". 336 334 "from customers where custid='$webvar{custid}'"); 337 335 $sth->execute; 338 my ($custid, $name, $street, $city, $prov, $country, $pocode, $phone, $tech, $abuse, $admin ) =336 my ($custid, $name, $street, $city, $prov, $country, $pocode, $phone, $tech, $abuse, $admin, $special) = 339 337 $sth->fetchrow_array; 340 338 print qq(<form action=admin.cgi method=POST> … … 358 356 Note: Only tech is required at the moment. 359 357 </td> 360 <td>"Special":</td><td><textarea name=special rows=4 cols= 40></textarea></td>358 <td>"Special":</td><td><textarea name=special rows=4 cols=50>$special</textarea></td> 361 359 </tr> 362 360 <tr><td colspan=4 align=center><input type=submit value="Update"></td></tr> … … 403 401 Admin: $webvar{admin_handle}<br> 404 402 </td></tr> 405 <tr><td>"Special":</td><td>< textarea name=special rows=4 cols=40>$webvar{special}</textarea></td></tr>403 <tr><td>"Special":</td><td><pre>$webvar{special}</pre></td></tr> 406 404 </table> 407 405 <a href="admin.cgi?action=listcust">Back</a> to rWHOIS customer list<br>\n);
Note:
See TracChangeset
for help on using the changeset viewer.