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