mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
대댓글일경우를 대비해서 로직 변경
This commit is contained in:
parent
f56b23e522
commit
5848572bb1
3 changed files with 48 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue