1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:05:56 +00:00

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

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;