mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Fix misleading argument description
This commit is contained in:
parent
ba6e6e0490
commit
1326a5e507
1 changed files with 7 additions and 7 deletions
|
|
@ -1565,23 +1565,23 @@ class CommentController extends Comment
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delete declared comment, log
|
* delete declared comment, log
|
||||||
* @param array|string $commentSrls : srls string (ex: 1, 2,56, 88)
|
* @param object $args should contain comment_srl
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function _deleteDeclaredComments($commentSrls)
|
function _deleteDeclaredComments($args)
|
||||||
{
|
{
|
||||||
executeQuery('comment.deleteDeclaredComments', $commentSrls);
|
executeQuery('comment.deleteDeclaredComments', $args);
|
||||||
executeQuery('comment.deleteDeclaredCommentLog', $commentSrls);
|
executeQuery('comment.deleteDeclaredCommentLog', $args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delete voted comment log
|
* delete voted comment log
|
||||||
* @param array|string $commentSrls : srls string (ex: 1, 2,56, 88)
|
* @param object $args should contain comment_srl
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function _deleteVotedComments($commentSrls)
|
function _deleteVotedComments($args)
|
||||||
{
|
{
|
||||||
executeQuery('comment.deleteCommentVotedLog', $commentSrls);
|
executeQuery('comment.deleteCommentVotedLog', $args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue