svnno****@sourc*****
svnno****@sourc*****
2013年 3月 1日 (金) 16:02:21 JST
Revision: 938 http://sourceforge.jp/projects/p2-php/scm/svn/commits/938 Author: akid Date: 2013-03-01 16:02:20 +0900 (Fri, 01 Mar 2013) Log Message: ----------- p2/ ●で過去ログを取得した時、>>1が欠けてしまうことがあったバグを修正。 Modified Paths: -------------- p2/trunk/lib/ThreadRead.php -------------- next part -------------- Modified: p2/trunk/lib/ThreadRead.php =================================================================== --- p2/trunk/lib/ThreadRead.php 2012-12-22 14:59:37 UTC (rev 937) +++ p2/trunk/lib/ThreadRead.php 2013-03-01 07:02:20 UTC (rev 938) @@ -695,7 +695,7 @@ if ($marudatlines) { $firstline = array_shift($marudatlines); // \x83`\x83\x83\x83\x93\x83N\x82Ƃ\xA9 - if (false !== strpos($firstline, '+OK')) { + if (false === strpos($firstline, '+OK')) { $secondline = array_shift($marudatlines); } $cont = ''; @@ -882,7 +882,7 @@ if (false === FileCtl::mkdirFor($keydatgzfile)) { return false; } - if (file_put_contents($keydatgzfile, $body, LOCK_EX) === false) { + if (false === file_put_contents($keydatgzfile, $body, LOCK_EX)) { die("Error: cannot write file. downloadDat2chKako()"); return false; }