|
From: Benjamin C. <bc...@us...> - 2004-05-21 12:27:43
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6329 Modified Files: Tag: htmltemplates index.php Log Message: Fixes bug #956443 Index: index.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/index.php,v retrieving revision 1.39.2.4 retrieving revision 1.39.2.5 diff -u -r1.39.2.4 -r1.39.2.5 --- index.php 3 May 2004 13:34:38 -0000 1.39.2.4 +++ index.php 21 May 2004 12:27:32 -0000 1.39.2.5 @@ -127,7 +127,7 @@ // Lastly we will need a list of all statuses so we can exclude 'closed" // for the open query $sOpenStatusQuery = '&status%5B%5D='.@join('&status%5B%5D=', - $db->getCol("select status_id from status where bug_open = 1")); + $db->getCol("select status_id from " . TBL_STATUS ." where bug_open = 1")); // QUESTION: Will this still work with using translate('Project')? foreach ($aProjects['projects'] as $iProjectNumberKey => $value1) { |