[WTF CVS] wtf/util update_db.pl,1.2,1.3
Brought to you by:
gryphonshafer
From: Gryphon S. <gry...@us...> - 2007-03-28 22:57:21
|
Update of /cvsroot/wtf-tracker/wtf/util In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13095/util Modified Files: update_db.pl Log Message: Fix minor bug (deref an arrayref) to make closing-out projects work based on config setting Index: update_db.pl =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/util/update_db.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** update_db.pl 9 Mar 2007 22:56:59 -0000 1.2 --- update_db.pl 28 Mar 2007 22:56:55 -0000 1.3 *************** *** 63,67 **** b.product_id, b.bug_id AS bug, b.short_desc AS name, IF(b.bug_status NOT IN ( '} . ! join( q(','), WTF::Config::get('closed_states') ) . q{' ), 1, 0) AS active FROM bugs AS b --- 63,67 ---- b.product_id, b.bug_id AS bug, b.short_desc AS name, IF(b.bug_status NOT IN ( '} . ! join( q(','), @{ WTF::Config::get('closed_states') } ) . q{' ), 1, 0) AS active FROM bugs AS b |