|
From: Benjamin C. <bc...@us...> - 2001-11-12 01:13:38
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv13604
Modified Files:
query.php
Log Message:
Accidentally left out the severity color from the db query
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- query.php 2001/10/30 14:23:12 1.36
+++ query.php 2001/11/12 01:13:33 1.37
@@ -202,7 +202,7 @@
'TITLE' => $TITLE['buglist']));
$q->limit_query('select b.*, reporter.login as reporter, owner.login as owner,
- lastmodifier.login as lastmodifier, project_name, severity_name, status_name,
+ lastmodifier.login as lastmodifier, project_name, severity_name, severity_color, status_name,
os_name, version_name, component_name, resolution_name from '.TBL_BUG.' b
left join '.TBL_AUTH_USER.' owner on b.assigned_to = owner.user_id
left join '.TBL_AUTH_USER.' reporter on b.created_by = reporter.user_id
|