Develop and Download Open Source Software

Ticket #10355

Open Date: 2007-05-07 09:53

Last Update: 2007-05-07 09:53

RpcDateTimeHandlerの変数名のスペルミス

Reporter:(del#11823)Owner:(None)
Priority:5 - MediumMileStone:(None)
Type:BugsSeverity:5 - Medium
Component:(None)Status:Open
ResolutionNone

Details

2.0.16a-JPにて、XML-RPCの日付型をパースする処理に変数
名のスペルミスがありました。

class RpcDateTimeHandler extends XmlTagHandler
{
(中略)
function handleCharacterData(&$parser, &$data)
{
$matches = array();
if (!preg_match("/^([0-9]{4})([0-9]{2})([0-9]
{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})$/", $data,
$matches)) {
$parser->setTempValue(time());
} else {
$parser->setTempValue(gmmktime($matches
[4], $matches[5], $meatches[6], $matches[2], $matches
[3], $matches[1])); <<HERE!!
}
}
}

$meatches[6]

$matches[6]

Attach File

File ListNo attachments.
Add New attachment
Add attachment filesPlease login to add new attachment

Ticket History

No History

Add Comment/Update #10355 (RpcDateTimeHandlerの変数名のスペルミス)

You are not logged in. If you do not want to anonymous write, please login. » Login


SourceForge.JP is a Japanese version of SourceForge.net. For developments that are not related to Japan, we recommend you to use SourceForge.net.