get_theme_path: fallback to css/default.css if default theme is selected

This commit is contained in:
Andrew Dolgov 2017-12-03 14:17:25 +03:00
parent 2cf93c046c
commit bfebf57c5f
1 changed files with 3 additions and 0 deletions

View File

@ -2425,6 +2425,9 @@
}
function get_theme_path($theme) {
if ($theme == "default.php")
return "css/default.css";
$check = "themes/$theme";
if (file_exists($check)) return $check;