|
From: Ulf E. <ulf...@us...> - 2005-10-04 20:12:25
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18907 Modified Files: query.php Log Message: RFE #781511 - Allow search for "None" in Assigned-to Field Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.108 retrieving revision 1.109 diff -u -r1.108 -r1.109 --- query.php 4 Oct 2005 20:10:04 -0000 1.108 +++ query.php 4 Oct 2005 20:12:12 -0000 1.109 @@ -160,6 +160,9 @@ if (!empty($closed_end_date)) { $query[] = 'b.close_date < '.strtotime($closed_end_date); } + if (!empty($unassigned)) { + $query[] = 'b.assigned_to = 0'; + } // Email field(s) if (!empty($email1) && !empty($emailfield1)) { |