このコミットが含まれているのは:
テクニカル諏訪子 2020-07-14 14:26:29 +09:00
コミット 23b09c9ab4
1個のファイルの変更2行の追加0行の削除

ファイルの表示

@ -109,6 +109,7 @@ class SiteController extends Controller {
if ($this->getIp() != $c->ipaddress) unset($comments[$k]);
}
else {
unset($c->email);
unset($c->ipaddress);
unset($c->isShadow);
$c->created = date('Y年m月d日 H:i:s', $c->created);
@ -164,6 +165,7 @@ class SiteController extends Controller {
->insertGetId([
'post_id' => $id,
'name' => $com['name'],
'email' => $com['mail'],
'message' => $com['text'],
'created' => time(),
'ipaddress' => $this->getIp(),