7 lines
186 B
PHP
7 lines
186 B
PHP
<?php
|
|
|
|
setcookie("theme", "light", 2 ** 31, "/", $_SERVER["HTTP_HOST"]);
|
|
http_response_code(302);
|
|
header("Cache-Control: no-store");
|
|
header("Location: " . $_SERVER["HTTP_REFERER"]);
|