mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix #1295 empty list returned in procCommentGetList
This commit is contained in:
parent
5cd1cc53a5
commit
3f9d406f8d
2 changed files with 2 additions and 2 deletions
|
|
@ -1828,7 +1828,7 @@ class commentController extends comment
|
|||
{
|
||||
foreach($commentList as $value)
|
||||
{
|
||||
$value->content = strip_tags($value->content);
|
||||
$value->content = escape(strip_tags($value->content), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ class commentModel extends comment
|
|||
|
||||
// fetch from a database
|
||||
$args = new stdClass();
|
||||
$args->comment_srls = $comment_srls;
|
||||
$args->comment_srls = $comment_srl_list;
|
||||
$output = executeQuery('comment.getComments', $args, $columnList);
|
||||
if(!$output->toBool())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue