대댓글일경우를 대비해서 로직 변경

This commit is contained in:
BJRambo 2016-09-10 20:29:47 +09:00
parent f56b23e522
commit 5848572bb1
3 changed files with 48 additions and 7 deletions

View file

@ -474,4 +474,21 @@ class ncenterliteModel extends ncenterlite
return $output->data;
}
function getNotifyMemberSrlByCommentSrl($comment_srl)
{
if(!$comment_srl === null)
{
return false;
}
$args = new stdClass();
$args->srl = $comment_srl;
$output = executeQueryArray('ncenterlite.getNotifyMemberSrlByCommentSrl', $args);
if(!$output->toBool())
{
return $output;
}
return $output->data;
}
}