get_theme_path: fallback to css/default.css if default theme is selected
This commit is contained in:
parent
2cf93c046c
commit
bfebf57c5f
1 changed files with 3 additions and 0 deletions
|
@ -2425,6 +2425,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_theme_path($theme) {
|
function get_theme_path($theme) {
|
||||||
|
if ($theme == "default.php")
|
||||||
|
return "css/default.css";
|
||||||
|
|
||||||
$check = "themes/$theme";
|
$check = "themes/$theme";
|
||||||
if (file_exists($check)) return $check;
|
if (file_exists($check)) return $check;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue