From: Alexander M. <key...@us...> - 2003-07-16 11:36:39
|
CVSROOT : /cvsroot/publicdnsadmin Module : publicdnsadmin Commit time: 2003-07-16 11:36:38 UTC Modified files: lib/config.php-dist Log message: Author: Alexander Maassen <out...@ke...> Log message: ns2port was defined twice. First occurance should have been ns1port ---------------------- diff included ---------------------- Index: publicdnsadmin/lib/config.php-dist diff -u publicdnsadmin/lib/config.php-dist:1.8 publicdnsadmin/lib/config.php-dist:1.9 --- publicdnsadmin/lib/config.php-dist:1.8 Thu Jun 19 02:43:50 2003 +++ publicdnsadmin/lib/config.php-dist Wed Jul 16 04:36:28 2003 @@ -7,7 +7,7 @@ Distributed under the GPL license, see LICENSE for more information - $Id: config.php-dist,v 1.8 2003/06/19 09:43:50 sirvulcan Exp $ + $Id: config.php-dist,v 1.9 2003/07/16 11:36:28 key2peace Exp $ */ /* @@ -53,7 +53,7 @@ /* NS Server Addresses / Access Data, You Need Webserver Enabled On PowerDNS */ $ns1addy = "ns1.server.com"; -$ns2port = "8081"; +$ns1port = "8081"; $ns1user = "admin"; $ns1pass = "password"; ----------------------- End of diff ----------------------- |