このコミットが含まれているのは:
テクニカル諏訪子 2018-03-14 21:51:11 +09:00
コミット 71b954e588
1個のファイルの変更4行の追加3行の削除

ファイルの表示

@ -227,6 +227,7 @@ class SiteController extends Controller {
'publish_date' => strftime('%Y/%m/%d(%a) %H:%M:%S %Z', $i->publish_date),
'message' => $i->message,
'gender' => $i->gender,
'avatar' => $i->avatar,
'showcol' => $showCol,
'showname' => $showName
]);
@ -272,7 +273,7 @@ class SiteController extends Controller {
'last_date',
'isDeleted',
'message',
'ip_address',
'blg_comments.ip_address',
'username',
'perm_id',
'gender',
@ -347,7 +348,7 @@ class SiteController extends Controller {
->join('usr_details', 'usr_details.user_id', '=', 'blg_comments.user_id')
->join('usr_profile', 'usr_profile.user_id', '=', 'blg_comments.user_id')
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'blg_comments.user_id')
->where('id', $id)
->where('blg_comments.id', $id)
->orderBy('post_date', 'asc')
->get(array(
'blg_comments.user_id',
@ -357,7 +358,7 @@ class SiteController extends Controller {
'last_date',
'isDeleted',
'message',
'ip_address',
'blg_comments.ip_address',
'username',
'perm_id',
'gender',