|
From: Benjamin C. <bc...@us...> - 2001-09-15 15:54:05
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv11541
Modified Files:
config.php
Log Message:
A little bit of clean-up
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- config.php 2001/09/07 13:49:14 1.9
+++ config.php 2001/09/15 15:54:03 1.10
@@ -28,7 +28,7 @@
define ('PHPLIBPATH', ''); // If not in the include path
define ('JPGRAPH_PATH', ''); // If not in the include path
-//Database Config
+// Database Config
define ('DB_TYPE', 'mysql'); //using PHPlib file naming
define ('DB_HOST', 'localhost');
define ('DB_DATABASE', 'BugTracker');
@@ -54,10 +54,9 @@
define ('DATEFORMAT', 'm-d-Y');
define ('TIMEFORMAT', 'g:i A');
-//Database Table Config
-//you can change either the prefix of the table names or each table name individually
-//define ('TBL_PREFIX', 'phpbt_'); //the prefix for all tables
-define ('TBL_PREFIX', ''); //the prefix for all tables, leave empty to use the old style
+// 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_ATTACHMENT', TBL_PREFIX.'attachment');
define ('TBL_AUTH_GROUP', TBL_PREFIX.'auth_group');
define ('TBL_AUTH_PERM', TBL_PREFIX.'auth_perm');
|