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でリロード }