aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/main.php
diff options
context:
space:
mode:
Diffstat (limited to 'theme/admin/html/main.php')
-rw-r--r--theme/admin/html/main.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/theme/admin/html/main.php b/theme/admin/html/main.php
index c6fe12c..bf6bd1a 100644
--- a/theme/admin/html/main.php
+++ b/theme/admin/html/main.php
@@ -3,11 +3,11 @@ if($toogle = HTTP::GET('colors')) {
$options = ['path' => '/', 'samesite' => 'Lax'];
if($toogle === 'dark') {
- $_COOKIE['dark_mode'] = TRUE;
- setcookie('dark_mode', TRUE, $options);
+ $_COOKIE['dark_mode'] = true;
+ setcookie('dark_mode', true, $options);
} else {
unset($_COOKIE['dark_mode']);
- setcookie('dark_mode', NULL, array_merge($options, ['expires' => -1]));
+ setcookie('dark_mode', null, array_merge($options, ['expires' => -1]));
}
}