Skip to content

Commit

Permalink
接頭詞 p_n_ が1箇所抜けていたのを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Jan 1, 2025
1 parent aaf6905 commit 032cac8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion petitnote/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@

// 年齢確認を必須にする
// する: trueで掲示板のすべてのコンテンツの閲覧に年齢確認が必要になります。
// 年齢確認ページ以外のコンテンツは検索エンジンから認識されなくなります。
// あなたは18才以上ですか?という年齢確認確認画面が表示されます。
// 年齢確認画面以外のコンテンツは検索エンジンから認識されなくなります。
// する: true しない: false

// $age_check_required_to_view = true;
Expand Down
2 changes: 1 addition & 1 deletion petitnote/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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でリロード
}
Expand Down

0 comments on commit 032cac8

Please sign in to comment.