Update of /cvsroot/wtf-tracker/wtf/lib/WTF
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6152/lib/WTF
Modified Files:
Config.pm
Log Message:
Minor change to fix a bug with closed_states returning an array instead of an arrayref
Index: Config.pm
===================================================================
RCS file: /cvsroot/wtf-tracker/wtf/lib/WTF/Config.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Config.pm 9 Mar 2007 22:56:58 -0000 1.9
--- Config.pm 9 Mar 2007 23:06:07 -0000 1.10
***************
*** 48,52 ****
# Bug state(s) considered to be "closed" projects
# (i.e. will cause bugs to be hidden on a database update)
! 'closed_states' => qw( CLOSED VERIFIED ),
# HTML::Template template file settings
--- 48,52 ----
# Bug state(s) considered to be "closed" projects
# (i.e. will cause bugs to be hidden on a database update)
! 'closed_states' => [ 'CLOSED', 'VERIFIED' ],
# HTML::Template template file settings
|