css file name fix

This commit is contained in:
z-eos 2020-11-06 12:47:28 +02:00
parent 224b6d81e0
commit 2fcb73ae32
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,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/monitorix-" . $config{theme_color} . ".css' rel='stylesheet'>\n");
print(" <link href='" . $config{url} . "/css/" . $config{theme_color} . ".css' rel='stylesheet'>\n");
if($config{refresh_rate}) {
print(" <meta http-equiv='Refresh' content='" . $config{refresh_rate} . "'>\n");
}