From 20a4929ff5d5e637f80c4d7c73a50c5ffebd7421 Mon Sep 17 00:00:00 2001 From: bettina Date: Thu, 22 Feb 2001 16:31:30 +0000 Subject: [PATCH] renamed table notes -> phpgw_notes --- header.inc.php.template | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/header.inc.php.template b/header.inc.php.template index d359d2a09c..f963e418c5 100644 --- a/header.inc.php.template +++ b/header.inc.php.template @@ -19,26 +19,26 @@ * the absolute path to fit your site, and you should be up and running. * \**************************************************************************/ - define("PHPGW_SERVER_ROOT", "/usr/local/www/phpgroupware"); - define("PHPGW_INCLUDE_ROOT", "/usr/local/www/phpgroupware"); - $phpgw_info["server"]["header_admin_password"] = "bla"; + define("PHPGW_SERVER_ROOT", "{SERVER_ROOT}"); + define("PHPGW_INCLUDE_ROOT", "{INCLUDE_ROOT}"); + $phpgw_info["server"]["header_admin_password"] = "{HEADER_ADMIN_PASSWORD}"; $phpgw_domain["default"] = array ( - "db_host" => "localhost", - "db_name" => "phpgw", - "db_user" => "root", - "db_pass" => "", + "db_host" => "{DB_HOST}", + "db_name" => "{DB_NAME}", + "db_user" => "{DB_USER}", + "db_pass" => "{DB_PASS}", /* Look at the README file */ - "db_type" => "mysql", + "db_type" => "{DB_TYPE}", /* This will limit who is allowed to make configuration modifcations */ - "config_passwd" => "bla" + "config_passwd" => "{CONFIG_PASS}" ); /* If you want to have your domains in a select box, change to True */ - $phpgw_info["server"]["show_domain_selectbox"] = False; + $phpgw_info["server"]["show_domain_selectbox"] = {DOMAIN_SELECTBOX}; /* This is used to control mcrypt's use */ - $phpgw_info["server"]["mcrypt_enabled"] = False; + $phpgw_info["server"]["mcrypt_enabled"] = {ENABLE_MCRYPT}; /* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */ $phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}"; @@ -80,4 +80,4 @@ } // Leave off the final php closing tag, some editors will add - // a \n or space after which will mess up cookies later on + // a \n or space after which will mess up cookies later on \ No newline at end of file