Merge branch 'pr/703' into develop

This commit is contained in:
bnu 2015-03-23 14:37:07 +09:00
commit 256c68a4ee
2 changed files with 9 additions and 7 deletions

View file

@ -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;