|
From: Ken T. <ke...@us...> - 2003-10-12 21:32:13
|
Update of /cvsroot/phpbt/phpbt/inc
In directory sc8-pr-cvs1:/tmp/cvs-serv1241/inc
Modified Files:
functions.php
Log Message:
closed-bugs FINALLY works!
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- functions.php 24 Jul 2003 04:57:00 -0000 1.44
+++ functions.php 12 Oct 2003 21:32:07 -0000 1.45
@@ -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
|