버전: 1.8.6 증상: 포스트에 달린 openid 댓글 A 아래 openid 아닌 댓글 B가 있을 경우, xml 파일로 export시 B의 openid 항목에 A의 openid 값이 들어갑니다.
해결: interface\owner\data\export\index.php의 다음 부분을
if($childComment->isfiltered == 0)
{
... '<openid>' . $comment->openid . '</openid>' . ...
}
다음과 같이 고쳐 주면 됩니다(엉뚱한 변수를 사용하더군요!):
if($childComment->isfiltered == 0)
{
... '<openid>' . $childComment->openid . '</openid>' . ...
}