コメントID

このコミットが含まれているのは:
テクニカル諏訪子 2019-01-28 18:14:31 +09:00
コミット 2cd889d913
1個のファイルの変更2行の追加0行の削除

ファイルの表示

@ -489,6 +489,7 @@ class SiteController extends Controller {
->where('blg_comments.content_id', $id)
->orderBy('post_date', 'asc')
->get(array(
'blg_comments.id',
'blg_comments.user_id',
'content_id',
'votes',
@ -540,6 +541,7 @@ class SiteController extends Controller {
$showGroupName = $gname[0]->name;
array_push($res, [
'id' => $i->id,
'user_id' => $i->user_id,
'content_id' => $i->content_id,
'votes' => $i->votes,