|
From: Benjamin C. <bc...@us...> - 2001-10-30 03:59:54
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv10107
Modified Files:
config.php
Log Message:
Use constants for the support tables to facilitate the web installation
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- config.php 2001/10/12 13:43:29 1.14
+++ config.php 2001/10/30 03:59:51 1.15
@@ -34,6 +34,8 @@
// 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');
|