website/api/set_theme/dark.php

8 lines
216 B
PHP
Raw Permalink Normal View History

2022-07-10 10:20:04 +01:00
<?php
// TODO check cookies enabled
setcookie("theme", "dark", 2 ** 31, "/", $_SERVER["HTTP_HOST"]);
http_response_code(302);
header("Cache-Control: no-store");
header("Location: " . $_SERVER["HTTP_REFERER"]);