|
From: Benjamin C. <bc...@us...> - 2002-03-18 17:55:59
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv25298
Modified Files:
config.php
Log Message:
Added bug dependencies
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- config.php 26 Jan 2002 16:46:52 -0000 1.23
+++ config.php 18 Mar 2002 17:47:07 -0000 1.24
@@ -26,39 +26,40 @@
// Database Config
define ('DB_TYPE', 'mysql'); // using PHPlib file naming
-define ('DB_HOST', 'localhost');
+define ('DB_HOST', 'stinky');
define ('DB_DATABASE', 'BugTracker');
define ('DB_USER', 'root');
-define ('DB_PASSWORD', '');
+define ('DB_PASSWORD', 'howdy');
// Database Table Config
// you can change either the prefix of the table names or each table name individually
define ('TBL_PREFIX', ''); // the prefix for all tables, leave empty to use the old style
define ('TBL_ACTIVE_SESSIONS', TBL_PREFIX.'active_sessions');
define ('TBL_DB_SEQUENCE', TBL_PREFIX.'db_sequence');
-define ('TBL_ATTACHMENT', TBL_PREFIX.'attachment');
-define ('TBL_AUTH_GROUP', TBL_PREFIX.'auth_group');
-define ('TBL_AUTH_PERM', TBL_PREFIX.'auth_perm');
-define ('TBL_AUTH_USER', TBL_PREFIX.'auth_user');
-define ('TBL_BUG', TBL_PREFIX.'bug');
-define ('TBL_BUG_CC', TBL_PREFIX.'bug_cc');
-define ('TBL_BUG_GROUP', TBL_PREFIX.'bug_group');
-define ('TBL_BUG_HISTORY', TBL_PREFIX.'bug_history');
-define ('TBL_BUG_VOTE', TBL_PREFIX.'bug_vote');
-define ('TBL_COMMENT', TBL_PREFIX.'comment');
-define ('TBL_COMPONENT', TBL_PREFIX.'component');
-define ('TBL_CONFIGURATION', TBL_PREFIX.'configuration');
-define ('TBL_GROUP_PERM', TBL_PREFIX.'group_perm');
-define ('TBL_OS', TBL_PREFIX.'os');
-define ('TBL_PROJECT', TBL_PREFIX.'project');
-define ('TBL_RESOLUTION', TBL_PREFIX.'resolution');
-define ('TBL_SAVED_QUERY', TBL_PREFIX.'saved_query');
-define ('TBL_SEVERITY', TBL_PREFIX.'severity');
-define ('TBL_STATUS', TBL_PREFIX.'status');
-define ('TBL_USER_GROUP', TBL_PREFIX.'user_group');
-define ('TBL_USER_PERM', TBL_PREFIX.'user_perm');
-define ('TBL_VERSION', TBL_PREFIX.'version');
-define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
+define ('TBL_ATTACHMENT', TBL_PREFIX.'attachment');
+define ('TBL_AUTH_GROUP', TBL_PREFIX.'auth_group');
+define ('TBL_AUTH_PERM', TBL_PREFIX.'auth_perm');
+define ('TBL_AUTH_USER', TBL_PREFIX.'auth_user');
+define ('TBL_BUG', TBL_PREFIX.'bug');
+define ('TBL_BUG_CC', TBL_PREFIX.'bug_cc');
+define ('TBL_BUG_DEPENDENCY', TBL_PREFIX.'bug_dependency');
+define ('TBL_BUG_GROUP', TBL_PREFIX.'bug_group');
+define ('TBL_BUG_HISTORY', TBL_PREFIX.'bug_history');
+define ('TBL_BUG_VOTE', TBL_PREFIX.'bug_vote');
+define ('TBL_COMMENT', TBL_PREFIX.'comment');
+define ('TBL_COMPONENT', TBL_PREFIX.'component');
+define ('TBL_CONFIGURATION', TBL_PREFIX.'configuration');
+define ('TBL_GROUP_PERM', TBL_PREFIX.'group_perm');
+define ('TBL_OS', TBL_PREFIX.'os');
+define ('TBL_PROJECT', TBL_PREFIX.'project');
+define ('TBL_RESOLUTION', TBL_PREFIX.'resolution');
+define ('TBL_SAVED_QUERY', TBL_PREFIX.'saved_query');
+define ('TBL_SEVERITY', TBL_PREFIX.'severity');
+define ('TBL_STATUS', TBL_PREFIX.'status');
+define ('TBL_USER_GROUP', TBL_PREFIX.'user_group');
+define ('TBL_USER_PERM', TBL_PREFIX.'user_perm');
+define ('TBL_VERSION', TBL_PREFIX.'version');
+define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
define ('ONEDAY', 86400);
|