|
From: Jirka P. <fi...@us...> - 2002-06-13 11:29:43
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv12852/phpbt
Modified Files:
config-dist.php config.php
Log Message:
Started adding environment tracking. Named the table TBL_SITE and will call the feature SITE TRACKING rather than obsoleted ENVIRONMENT TRACKING from now, because it's better self-explanatory.
Index: config-dist.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config-dist.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- config-dist.php 21 May 2002 12:44:58 -0000 1.17
+++ config-dist.php 13 Jun 2002 11:29:39 -0000 1.18
@@ -64,6 +64,7 @@
define ('TBL_VERSION', TBL_PREFIX.'version');
define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
define ('TBL_DATABASE', TBL_PREFIX.'database_server');
+define ('TBL_SITE', TBL_PREFIX.'site');
define ('ONEDAY', 86400);
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- config.php 21 May 2002 12:44:58 -0000 1.31
+++ config.php 13 Jun 2002 11:29:39 -0000 1.32
@@ -66,6 +66,7 @@
define ('TBL_VERSION', TBL_PREFIX.'version');
define ('TBL_PROJECT_GROUP', TBL_PREFIX.'project_group');
define ('TBL_DATABASE', TBL_PREFIX.'database_server');
+define ('TBL_SITE', TBL_PREFIX.'site');
define ('ONEDAY', 86400);
|