|
From: Benjamin C. <bc...@us...> - 2002-03-14 16:08:04
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv31923
Modified Files:
index.php
Log Message:
Fixed a bug with the closed bugs list
Index: index.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/index.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- index.php 5 Mar 2002 22:11:47 -0000 1.17
+++ index.php 14 Mar 2002 16:01:20 -0000 1.18
@@ -133,7 +133,7 @@
}
$q->query('select b.bug_id, title from '.TBL_BUG.' b, '.TBL_BUG_HISTORY.
" h where project_id not in ($restricted_projects) and b.bug_id = h.bug_id".
- " and changed_field = 'Status' and new_value = 'Closed'".
+ " and changed_field = 'status' and new_value = 'Closed'".
' order by h.created_date desc limit 5');
if (!$q->num_rows()) {
$t->set_var('closerows', $STRING['nobugs']);
|