Hi Bill,

Found some glitches when importing domains. Here's my code modifications:

# diff functions.php ../../ns110/src/functions.php 
626a627,628
>     $out_array = NULL;
> 


# diff domains.php ../../ns110/src/domains.php 
418c437
<     $message = "Domain $domain deleted successfully";
---
>     $message = "Domain ".$_REQUEST['domain']." deleted successfully";
529c578
<     if($_REQUEST['default_soa'] == "on") {
---
>     if(isset($_REQUEST['default_soa'])) {
534c583
<     if($_REQUEST['default_ns'] == "on") {
---
>     if(isset($_REQUEST['default_ns'])) {
584c633
<                   if (($_REQUEST['default_soa']=="on") &&
($result['type']=='S')) {
---
>                   if (isset($_REQUEST['default_soa']) &&
($result['type']=='S')) {
588c637
<                   if (($_REQUEST['default_ns']!="on") ||
($result['type']!='N')) {
---
>                   if (!isset($_REQUEST['default_ns']) ||
($result['type']!='N')) {
603c652
<         if ($_REQUEST['default_ns']=="on") {
---
>         if (isset($_REQUEST['default_ns'])) {

Best regards,
Rodrigo

> -----Original Message-----
> From: Bill Shupp [mailto:[EMAIL PROTECTED] 
> Sent: quarta-feira, 9 de Fevereiro de 2005 21:58
> To: [email protected]; [email protected]
> Subject: [users] VegaDNS 1.1.0 - development branch
> 
> All,
> 
> I have uploaded VegaDNS 1.1.0 to http://vegadns.org.  New 
> features include:
> 
> SRV Support
> IPv6 Support
> ADODB Support
> 
> NOTES:
> * IPv6 support is optional since it requires patches to 
> djbdns and ucspi-tcp.  You'll need to turn it on in config.php.
> * ADODB is a database abstraction layer, which should allow 
> seamless support for many many different databases.  Right 
> now, I only have the MySQL driver install, and that appears 
> to be working fine.  If anyone would like to help test 
> another database, that would be great.  Postgres would be the 
> first logical choice.  You'll need to grab the driver from 
> http://adodb.sf.net, and then report any queries that still 
> have MySQL specific attributes to that we can get them 
> converted to something neutral.
> * There are lots of code changes in this release.  It is NOT 
> recommended for production.
> 
> 
> Please post any feedback to the users list.
> 
> Regards,
> 
> Bill Shupp
> 

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to