|
From: Benjamin C. <bc...@us...> - 2001-09-15 23:13:52
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv19496
Modified Files:
query.php
Log Message:
Fixes bug #461898
bug.op_sys_id instead of bug.os_id
Index: query.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/query.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- query.php 2001/09/03 20:43:09 1.27
+++ query.php 2001/09/15 23:13:48 1.28
@@ -114,7 +114,7 @@
// Select boxes
if ($status) $flags[] = 'bug.status_id in ('.delimit_list(',',$status).')';
if ($resolution) $flags[] = 'bug.resolution_id in ('.delimit_list(',',$resolution).')';
- if ($os) $flags[] = 'bug.op_sys_id in ('.delimit_list(',',$os).')';
+ if ($os) $flags[] = 'bug.os_id in ('.delimit_list(',',$os).')';
if ($priority) $flags[] = 'bug.priority in ('.delimit_list(',',$priority).')';
if ($severity) $flags[] = 'bug.severity_id in ('.delimit_list(',',$severity).')';
if ($flags) $query[] = '('.delimit_list(' or ',$flags).')';
|