mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-25 21:32:51 +09:00
Merge branch 'pr/703' into develop
This commit is contained in:
commit
256c68a4ee
2 changed files with 9 additions and 7 deletions
|
|
@ -133,7 +133,7 @@ class commentModel extends comment
|
|||
{
|
||||
$args = new stdClass();
|
||||
$args->comment_srl = $comment_srl;
|
||||
$output = executeQuery('comment.getChildCommentCount', $args);
|
||||
$output = executeQuery('comment.getChildCommentCount', $args, NULL, 'master');
|
||||
return (int) $output->data->count;
|
||||
}
|
||||
|
||||
|
|
@ -146,7 +146,7 @@ class commentModel extends comment
|
|||
{
|
||||
$args = new stdClass();
|
||||
$args->comment_srl = $comment_srl;
|
||||
$output = executeQueryArray('comment.getChildComments', $args);
|
||||
$output = executeQueryArray('comment.getChildComments', $args, NULL, 'master');
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
|
|
@ -255,7 +255,7 @@ class commentModel extends comment
|
|||
$args->status = 1;
|
||||
}
|
||||
|
||||
$output = executeQuery('comment.getCommentCount', $args);
|
||||
$output = executeQuery('comment.getCommentCount', $args, NULL, 'master');
|
||||
$total_count = $output->data->count;
|
||||
|
||||
return (int) $total_count;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue