Skip to content

Commit b82a6d0

Browse files
committed
1 parent fa804bb commit b82a6d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

interface/lib/config.inc.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
ini_set('register_globals',0);
3131

32-
$conf['app_title'] = "MyDNSConfig";
32+
$conf["app_title"] = "MyDNSConfig";
3333
$conf["app_version"] = "1.0.0";
3434

3535
$conf["rootpath"] = "F:\\server\\www\\ispconfig3\\interface";
@@ -73,7 +73,7 @@
7373
Default Language
7474
*/
7575

76-
$conf['language'] = 'en';
76+
$conf["language"] = 'en';
7777

7878

7979
/*
@@ -87,13 +87,13 @@
8787
DNS Settings
8888
*/
8989

90-
$conf['auto_create_ptr'] = 1; // Automatically create PTR records?
91-
$conf['default_ns'] = 'ns1.example.com.'; // must be set if $conf['auto_create_ptr'] is 1. Don't forget the trailing dot!
92-
$conf['default_mbox'] = 'admin.example.com.'; // Admin email address. Must be set if $conf['auto_create_ptr'] is 1. Replace "@" with ".". Don't forget the trailing dot!
93-
$conf['default_ttl'] = 86400;
94-
$conf['default_refresh'] = 28800;
95-
$conf['default_retry'] = 7200;
96-
$conf['default_expire'] = 604800;
97-
$conf['default_minimum_ttl'] = 86400;
90+
$conf["auto_create_ptr"] = 1; // Automatically create PTR records?
91+
$conf["default_ns"] = 'ns1.example.com.'; // must be set if $conf['auto_create_ptr'] is 1. Don't forget the trailing dot!
92+
$conf["default_mbox"] = 'admin.example.com.'; // Admin email address. Must be set if $conf['auto_create_ptr'] is 1. Replace "@" with ".". Don't forget the trailing dot!
93+
$conf["default_ttl"] = 86400;
94+
$conf["default_refresh"] = 28800;
95+
$conf["default_retry"] = 7200;
96+
$conf["default_expire"] = 604800;
97+
$conf["default_minimum_ttl"] = 86400;
9898

9999
?>

0 commit comments

Comments
 (0)