renamed table notes -> phpgw_notes

This commit is contained in:
bettina 2001-02-22 16:31:30 +00:00
parent c51f21db61
commit 20a4929ff5

View File

@ -19,26 +19,26 @@
* the absolute path to fit your site, and you should be up and running. * * the absolute path to fit your site, and you should be up and running. *
\**************************************************************************/ \**************************************************************************/
define("PHPGW_SERVER_ROOT", "/usr/local/www/phpgroupware"); define("PHPGW_SERVER_ROOT", "{SERVER_ROOT}");
define("PHPGW_INCLUDE_ROOT", "/usr/local/www/phpgroupware"); define("PHPGW_INCLUDE_ROOT", "{INCLUDE_ROOT}");
$phpgw_info["server"]["header_admin_password"] = "bla"; $phpgw_info["server"]["header_admin_password"] = "{HEADER_ADMIN_PASSWORD}";
$phpgw_domain["default"] = array ( $phpgw_domain["default"] = array (
"db_host" => "localhost", "db_host" => "{DB_HOST}",
"db_name" => "phpgw", "db_name" => "{DB_NAME}",
"db_user" => "root", "db_user" => "{DB_USER}",
"db_pass" => "", "db_pass" => "{DB_PASS}",
/* Look at the README file */ /* Look at the README file */
"db_type" => "mysql", "db_type" => "{DB_TYPE}",
/* This will limit who is allowed to make configuration modifcations */ /* 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 */ /* 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 */ /* 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. */ /* Set this to "old" for versions < 2.4, otherwise the exact mcrypt version you use. */
$phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}"; $phpgw_info["server"]["versions"]["mcrypt"] = "{MCRYPT_VERSION}";
@ -80,4 +80,4 @@
} }
// Leave off the final php closing tag, some editors will add // 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