|
From: Benjamin C. <bc...@us...> - 2004-05-03 13:02:33
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17556 Modified Files: Tag: htmltemplates include.php Log Message: Use the new bug_open field in the database to get define the OPEN_BUG_STATUSES constant Index: include.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/include.php,v retrieving revision 1.126.4.2 retrieving revision 1.126.4.3 diff -u -r1.126.4.2 -r1.126.4.3 --- include.php 5 Sep 2003 11:58:48 -0000 1.126.4.2 +++ include.php 3 May 2004 13:02:24 -0000 1.126.4.3 @@ -62,7 +62,7 @@ define($k, $v); } define('OPEN_BUG_STATUSES', join(', ', - array(BUG_UNCONFIRMED, BUG_PROMOTED, BUG_ASSIGNED, BUG_REOPENED))); + $db->getCol("select status_id from status where bug_open = 1"))); require_once ('inc/db/'.DB_TYPE.'.php'); |