mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
ttimport의 함수 내부에 잘못 쓰인 continue를 return false로 변경 (흑마루님 제보)
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5326 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4eb7031166
commit
b8d8d88a8c
1 changed files with 1 additions and 1 deletions
|
|
@ -438,7 +438,7 @@
|
|||
$parent_output = executeQuery('comment.getCommentListItem', $parent_args);
|
||||
|
||||
// 부모댓글이 존재하지 않으면 return
|
||||
if(!$parent_output->toBool() || !$parent_output->data) continue;
|
||||
if(!$parent_output->toBool() || !$parent_output->data) return false;
|
||||
$parent = $parent_output->data;
|
||||
|
||||
$list_args->head = $parent->head;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue