svnno****@sourc*****
svnno****@sourc*****
2007年 12月 28日 (金) 17:25:58 JST
Revision: 384 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=slashdotjp&view=rev&rev=384 Author: tach Date: 2007-12-28 17:25:58 +0900 (Fri, 28 Dec 2007) Log Message: ----------- * Suppress "Use of uninitialized value in string eq at /usr/lib/perl5/Slash/DB/MySQL.pm line 3068" - initialize $series and use it Modified Paths: -------------- slashjp/trunk/Slash/DB/MySQL/MySQL.pm slashjp/trunk/debian/changelog -------------- next part -------------- Modified: slashjp/trunk/Slash/DB/MySQL/MySQL.pm =================================================================== --- slashjp/trunk/Slash/DB/MySQL/MySQL.pm 2007-12-28 08:10:15 UTC (rev 383) +++ slashjp/trunk/Slash/DB/MySQL/MySQL.pm 2007-12-28 08:25:58 UTC (rev 384) @@ -3064,11 +3064,12 @@ my $submittable = $topic->{submittable} || 'no'; my $searchable = $topic->{searchable} || 'no'; my $storypickable = $topic->{storypickable} || 'no'; + my $series = $topic->{series} || 'no'; my $data = { keyword => $topic->{keyword}, textname => $topic->{textname}, - series => $topic->{series} eq 'yes' ? 'yes' : 'no', + series => $series eq 'yes' ? 'yes' : 'no', image => $image, width => $topic->{width} || '', height => $topic->{height} || '', Modified: slashjp/trunk/debian/changelog =================================================================== --- slashjp/trunk/debian/changelog 2007-12-28 08:10:15 UTC (rev 383) +++ slashjp/trunk/debian/changelog 2007-12-28 08:25:58 UTC (rev 384) @@ -1,3 +1,11 @@ +slash (2.5.0.188-5) unstable; urgency=low + + * Suppress "Use of uninitialized value in string eq at + /usr/lib/perl5/Slash/DB/MySQL.pm line 3068" + - initialize $series and use it + + -- Taku YASUI <tach****@osdn*****> Fri, 28 Dec 2007 17:24:38 +0900 + slash (2.5.0.188-4) unstable; urgency=low * Fix memcached keyname to get/set stories for correct skin