|
From: Benjamin C. <bc...@us...> - 2004-05-21 12:36:27
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8055 Modified Files: Tag: htmltemplates include.php Log Message: Use the table name constant Index: include.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/include.php,v retrieving revision 1.126.4.5 retrieving revision 1.126.4.6 diff -u -r1.126.4.5 -r1.126.4.6 --- include.php 21 May 2004 12:25:57 -0000 1.126.4.5 +++ include.php 21 May 2004 12:36:16 -0000 1.126.4.6 @@ -63,7 +63,7 @@ define($k, $v); } define('OPEN_BUG_STATUSES', join(', ', - $db->getCol("select status_id from status where bug_open = 1"))); + $db->getCol("select status_id from " . TBL_STATUS ." where bug_open = 1"))); } require_once ('inc/db/'.DB_TYPE.'.php'); |