fix to use 'white.css' when no color is provided in the CGI

This commit is contained in:
Jordi Sanfeliu 2020-12-03 11:21:53 +01:00
parent 08b3acdbd6
commit 393df08ea7
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ EOF
print(" <head>\n");
print(" <title>$config{title}</title>\n");
print(" <link rel='shortcut icon' href='" . $config{url} . "/" . $config{favicon} . "'>\n");
print(" <link href='" . $config{url} . "/css/" . $config{theme_color} . ".css' rel='stylesheet'>\n");
print(" <link href='" . $config{url} . "/css/" . $color . ".css' rel='stylesheet'>\n");
if($config{refresh_rate}) {
print(" <meta http-equiv='Refresh' content='" . $config{refresh_rate} . "'>\n");
}