From f73bb61c04c2ab46b7d4950f604e6cf84a42d78c Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sun, 19 Aug 2007 09:29:20 -0400
Subject: [PATCH] Fixed a strict error in tform.inc.php and tform_actions.inc.php

---
 install/tpl/config.inc.php.master |   17 +++++++----------
 1 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/install/tpl/config.inc.php.master b/install/tpl/config.inc.php.master
index 83e6e4a..c9f998a 100644
--- a/install/tpl/config.inc.php.master
+++ b/install/tpl/config.inc.php.master
@@ -35,6 +35,12 @@
 
 $conf["app_title"] = "ISPConfig";
 $conf["app_version"] = "3.0.0";
+$conf["modules_available"] 	= "admin,mail,sites,monitor,client,dns";
+
+/*
+	Server variables
+*/
+
 $conf["server_id"] 	= "{server_id}";
 
 
@@ -100,17 +106,8 @@
 $conf["start_session"]	= true;
 
 /*
-        DNS Settings
+	Constants
 */
-
-$conf["auto_create_ptr"] 	 = 1; // Automatically create PTR records?
-$conf["default_ns"] 		 = 'ns1.example.com.'; // must be set if $conf['auto_create_ptr'] is 1. Don't forget the trailing dot!
-$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!
-$conf["default_ttl"] 		 = 86400;
-$conf["default_refresh"] 	 = 28800;
-$conf["default_retry"] 		 = 7200;
-$conf["default_expire"] 	 = 604800;
-$conf["default_minimum_ttl"] = 86400;
 
 define("LOGLEVEL_DEBUG",0);
 define("LOGLEVEL_WARN",1);

--
Gitblit v1.9.1