svnno****@sourc*****
svnno****@sourc*****
2008年 1月 17日 (木) 20:26:58 JST
Revision: 423 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=slashdotjp&view=rev&rev=423 Author: tach Date: 2008-01-17 20:26:58 +0900 (Thu, 17 Jan 2008) Log Message: ----------- Suppress "Use of uninitialized value in numeric gt (>)" at message_delivery.pl line 86. Modified Paths: -------------- slashjp/trunk/debian/changelog slashjp/trunk/plugins/Messages/message_delivery.pl -------------- next part -------------- Modified: slashjp/trunk/debian/changelog =================================================================== --- slashjp/trunk/debian/changelog 2008-01-17 08:16:01 UTC (rev 422) +++ slashjp/trunk/debian/changelog 2008-01-17 11:26:58 UTC (rev 423) @@ -2,8 +2,11 @@ * New upstream CVS release * Suppress warning at slash-template-tool -d + * Suppress following warning messages: + - Use of uninitialized value in numeric gt (>) at + message_delivery.pl line 86. - -- Taku YASUI <tach****@osdn*****> Thu, 17 Jan 2008 17:15:17 +0900 + -- Taku YASUI <tach****@osdn*****> Thu, 17 Jan 2008 20:24:46 +0900 slash (2.5.0.188-6) unstable; urgency=low Modified: slashjp/trunk/plugins/Messages/message_delivery.pl =================================================================== --- slashjp/trunk/plugins/Messages/message_delivery.pl 2008-01-17 08:16:01 UTC (rev 422) +++ slashjp/trunk/plugins/Messages/message_delivery.pl 2008-01-17 11:26:58 UTC (rev 423) @@ -83,7 +83,7 @@ next; } - if ($constants->{message_delivery_debug} > 0) { + if ($constants->{message_delivery_debug} && $constants->{message_delivery_debug} > 0) { use Data::Dumper; foreach my $m (@$coll) { delete $m->{user}{people};