Update 1.4

This commit is contained in:
cbo 2024-03-18 14:13:22 +00:00
parent a1484ba8c6
commit 8126e99fb3

View File

@ -16,7 +16,7 @@ if (!isset($_COOKIE['theme'])) {
if (isset($_GET['theme'])) {
$newTheme = (int)$_GET['theme'] % 3;
setcookie('theme', $newTheme, time()+10*60*60, "/", ".e59.fr"); // % 2 => Number of different themes
setcookie('theme', $newTheme, time()+10*60*60, "/", ".e59.fr"); // % 3 => Number of different themes
$darkTheme = $darkThemes[$newTheme];
$lightTHeme = $lightThemes[$newTheme];