aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-10-02 12:46:54 +0200
committerThomas Lange <code@nerdmind.de>2021-10-02 12:51:32 +0200
commit17111a22ef698c97f1c447e7314c4f7327105301 (patch)
treed8ca4703f1e83e5dd10e9dbe6fee10e45f255d60
parent7308c7278969291cb9708582d8f5644b1bd8db67 (diff)
downloadblog-17111a22ef698c97f1c447e7314c4f7327105301.tar.gz
blog-17111a22ef698c97f1c447e7314c4f7327105301.tar.xz
blog-17111a22ef698c97f1c447e7314c4f7327105301.zip
Fix wrong color scheme identifier in migration.php
The light color scheme was renamed from "main" to "bright" since the following commit: 01cbd757d69668b39c1b072b0449b77e6e2bee8d
-rw-r--r--theme/admin/html/migration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/admin/html/migration.php b/theme/admin/html/migration.php
index 1b5be2c..082b95b 100644
--- a/theme/admin/html/migration.php
+++ b/theme/admin/html/migration.php
@@ -1,4 +1,4 @@
-<?php $theme = isset($_COOKIE['dark_mode']) ? 'dark' : 'main'; ?>
+<?php $theme = isset($_COOKIE['dark_mode']) ? 'dark' : 'bright'; ?>
<!DOCTYPE html>
<html lang="<?=$BLOGMETA['LANG']?>">
<head>