상품을 신규로 등록하고자 할때, 대분류를 선택하면, 중분류의 선택 옵션이 하나로 뭉쳐서 나오는 경우 해결방법 입니다.
설치디렉토리/lib/class.xml.php 파일의
function printChannel() 함수를 아래와 같이 변경하시면 됩니다.
function printChannel(){
if($this->printheadenable == true) $this->printhead();
foreach($this->items as $item){
print("<channel>\n");
while (list($name,$value) = each($item)) {
$this->getnextdepth($name, $value);
}
print("</channel>\n");
}
}
foreach 안에 <channel> ~ </channel> 태그가 위치해야 합니다.