Fix #1738 카테고리가 마지막 한개만 표시되는 문제 고침

This commit is contained in:
BJRambo 2021-06-23 18:50:54 +09:00
parent eb56785d54
commit 290066cf37

View file

@ -2713,8 +2713,8 @@ class documentController extends document
$node->document_count
);
if($child_buff) $buff = sprintf('<node %s>%s</node>', $attribute, $child_buff);
else $buff = sprintf('<node %s />', $attribute);
if($child_buff) $buff .= sprintf('<node %s>%s</node>', $attribute, $child_buff);
else $buff .= sprintf('<node %s />', $attribute);
}
return $buff;
}