|
From: Benjamin C. <bc...@us...> - 2001-09-07 13:49:18
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv9618
Modified Files:
config.php
Log Message:
While doing the new schema file I decided to alphabetize this list. :)
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- config.php 2001/09/03 15:04:49 1.8
+++ config.php 2001/09/07 13:49:14 1.9
@@ -59,24 +59,24 @@
//define ('TBL_PREFIX', 'phpbt_'); //the prefix for all tables
define ('TBL_PREFIX', ''); //the prefix for all tables, leave empty to use the old style
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_GROUP', TBL_PREFIX.'bug_group');
define ('TBL_BUG_HISTORY', TBL_PREFIX.'bug_history');
define ('TBL_COMMENT', TBL_PREFIX.'comment');
define ('TBL_COMPONENT', TBL_PREFIX.'component');
+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_AUTH_USER', TBL_PREFIX.'auth_user');
-define ('TBL_VERSION', TBL_PREFIX.'version');
-define ('TBL_OS', TBL_PREFIX.'os');
-define ('TBL_AUTH_GROUP', TBL_PREFIX.'auth_group');
-define ('TBL_AUTH_PERM', TBL_PREFIX.'auth_perm');
define ('TBL_USER_GROUP', TBL_PREFIX.'user_group');
define ('TBL_USER_PERM', TBL_PREFIX.'user_perm');
-define ('TBL_GROUP_PERM', TBL_PREFIX.'group_perm');
-define ('TBL_BUG_GROUP', TBL_PREFIX.'bug_group');
+define ('TBL_VERSION', TBL_PREFIX.'version');
define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
require_once (PHPLIBPATH.'db_'.DB_TYPE.'.inc');
|