Index: whineatnews.pl =================================================================== RCS file: /cvs/sandbox/issuezilla/whineatnews.pl,v retrieving revision 1.1 diff -u -4 -r1.1 whineatnews.pl --- whineatnews.pl 2000/09/28 04:28:27 1.1 +++ whineatnews.pl 2001/01/04 03:38:13 @@ -33,9 +33,9 @@ ConnectToDatabase(); SendSQL("select issue_id,login_name from issues,profiles where " . - "issue_status = 'NEW' and to_days(now()) - to_days(delta_ts) > " . + "issue_status = 'NEW' and priority = 'P1' or priority = 'P2' and to_days(now()) - to_days(delta_ts) > " . Param('whinedays') . " and userid=assigned_to order by issue_id"); my %issues; my @row;