Fix bug with setting theme cookie expires time.

This commit is contained in:
Darren 'Tadgy' Austin 2024-08-10 16:19:56 +01:00
commit 3b9747a411

View file

@ -1,6 +1,6 @@
<?php
$cookie_data = array(
"expires" => "Tue, 31 Dec 2069 23:59:59 GMT",
"expires" => mktime (23, 59, 59, 12, 31, 2069),
"domain" => ".slackware.uk",
"path" => "/",
"httponly" => true,