upd: default css url if no theme

This commit is contained in:
Andrew Dolgov 2017-12-03 13:10:25 +03:00
parent 6bd13fc55f
commit 3f2a871421
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@
if ($theme && theme_valid("$theme")) {
echo stylesheet_tag(get_theme_path($theme));
} else {
echo stylesheet_tag("themes/default.php");
echo stylesheet_tag("css/default.css");
}
}
?>

View File

@ -44,7 +44,7 @@
if ($theme && theme_valid("$theme")) {
echo stylesheet_tag(get_theme_path($theme));
} else {
echo stylesheet_tag("themes/default.php");
echo stylesheet_tag("css/default.css");
}
}
?>