|
From: Ken T. <ke...@us...> - 2003-10-12 21:33:12
|
Update of /cvsroot/phpbt/phpbt/inc
In directory sc8-pr-cvs1:/tmp/cvs-serv1438/inc
Modified Files:
Tag: phpbt-1_0
functions.php
Log Message:
yes, closed-bugs FINALLY works!
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.42.2.1
retrieving revision 1.42.2.2
diff -u -r1.42.2.1 -r1.42.2.2
--- functions.php 25 Jul 2003 02:50:08 -0000 1.42.2.1
+++ functions.php 12 Oct 2003 21:33:06 -0000 1.42.2.2
@@ -581,7 +581,7 @@
$closed_statuses[] = (int)$row['status_id'];
}
- return '('.$column.' = '.(count($closed_statuses ? join(' OR '.$column.' = ', $closed_statuses) : '1')).')';
+ return '('.$column.' = '.(count($closed_statuses) ? join(' OR '.$column.' = ', $closed_statuses) : '0').')';
}
// Check whether or not a status-id means BUG_CLOSED
|