From 032cac82810e525b9839168bb1b6d05a034e7989 Mon Sep 17 00:00:00 2001 From: satopian Date: Wed, 1 Jan 2025 16:09:43 +0900 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E9=A0=AD=E8=A9=9E=20p=5Fn=5F=20?= =?UTF-8?q?=E3=81=8C1=E7=AE=87=E6=89=80=E6=8A=9C=E3=81=91=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=9F=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- petitnote/config.php | 3 ++- petitnote/functions.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/petitnote/config.php b/petitnote/config.php index eff41c6..1b1936d 100644 --- a/petitnote/config.php +++ b/petitnote/config.php @@ -229,7 +229,8 @@ // 年齢確認を必須にする // する: trueで掲示板のすべてのコンテンツの閲覧に年齢確認が必要になります。 -// 年齢確認ページ以外のコンテンツは検索エンジンから認識されなくなります。 +// あなたは18才以上ですか?という年齢確認確認画面が表示されます。 +// 年齢確認画面以外のコンテンツは検索エンジンから認識されなくなります。 // する: true しない: false // $age_check_required_to_view = true; diff --git a/petitnote/functions.php b/petitnote/functions.php index a2efd72..3b69a27 100644 --- a/petitnote/functions.php +++ b/petitnote/functions.php @@ -81,7 +81,7 @@ function age_check(): void { $agecheck_passed = (bool)filter_input(INPUT_POST,'agecheck_passed',FILTER_VALIDATE_BOOLEAN); if($agecheck_passed){ - setcookie("agecheck_passed","1", time()+(86400*30),"","",false,true);//1ヶ月 + setcookie("p_n_agecheck_passed","1", time()+(86400*30),"","",false,true);//1ヶ月 } // 処理が終了したらJavaScriptでリロード }