]> git.p6c8.net - jirafeau.git/commitdiff
fix: favicon location
authorMathis Mensing <mathis.mensing@atp-papenburg.de>
Wed, 5 Apr 2023 07:00:53 +0000 (09:00 +0200)
committerMathis Mensing <mathis.mensing@atp-papenburg.de>
Wed, 5 Apr 2023 07:00:53 +0000 (09:00 +0200)
lib/functions.js.php

index 58623e6b2c053d91c41bc028269632a87331601e..3052bf03a45e2b9cf6a21a04d3c401574b322325 100644 (file)
@@ -805,14 +805,14 @@ function set_dark_mode() {
     let steel_sheet = "<?php echo 'media/' . $cfg['dark_style'] . '/style.css.php'; ?>";
     let shortcut_icon = "<?php echo 'media/' . $cfg['dark_style'] . '/favicon.ico'; ?>";
     document.getElementById('stylesheet').href = steel_sheet;
-    document.getElementById('shortcut_icon').href = steel_sheet;
+    document.getElementById('shortcut_icon').href = shortcut_icon;
 }
 
 function set_light_mode() {
     let steel_sheet = "<?php echo 'media/' . $cfg['style'] . '/style.css.php'; ?>";
     let shortcut_icon = "<?php echo 'media/' . $cfg['style'] . '/favicon.ico'; ?>";
     document.getElementById('stylesheet').href = steel_sheet;
-    document.getElementById('shortcut_icon').href = steel_sheet;
+    document.getElementById('shortcut_icon').href = shortcut_icon;
 }
 
 function color_scheme_preferences() {

patrick-canterino.de