diff options
author | lolcat <will@lolcat.ca> | 2023-10-16 02:30:43 -0400 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-10-16 02:30:43 -0400 |
commit | 3aa01807741ffad103b9f6a74d878e58f2e828e8 (patch) | |
tree | a06816e71b059d96b5e08f9d304cbc3818e85b48 /settings.php | |
parent | fa9dc4d6efc593b7301229c18b058d90024c939e (diff) |
captcha and imgur, findthatmeme, yep imagesearch
Diffstat (limited to 'settings.php')
-rw-r--r-- | settings.php | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/settings.php b/settings.php index bce3af0..98e6b49 100644 --- a/settings.php +++ b/settings.php @@ -161,6 +161,22 @@ $settings = [ [ "value" => "google", "text" => "Google" + ], + [ + "value" => "yep", + "text" => "Yep" + ], + /*[ + "value" => "pinterest", + "text" => "Pinterest" + ],*/ + [ + "value" => "imgur", + "text" => "Imgur" + ], + [ + "value" => "ftm", + "text" => "FindThatMeme" ] ] ], @@ -243,7 +259,7 @@ if($_POST){ // refresh cookie dates $loop = &$_COOKIE; } - + foreach($loop as $key => $value){ foreach($settings as $title){ @@ -262,7 +278,8 @@ foreach($loop as $key => $value){ "", [ "expires" => -1, // removes cookie - "samesite" => "Strict" + "samesite" => "Strict", + "path" => "/" ] ); |