mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-06 10:19:16 +00:00
support loading themes from themes.local
This commit is contained in:
@@ -570,8 +570,10 @@ class Pref_Prefs extends Handler_Protected {
|
||||
|
||||
} else if ($pref_name == "USER_CSS_THEME") {
|
||||
|
||||
$themes = array_filter(array_map("basename", glob("themes/*.css")),
|
||||
"theme_valid");
|
||||
$themes = array_merge(glob("themes/*.css"), glob("themes.local/*.css"));
|
||||
$themes = array_map("basename", $themes);
|
||||
$themes = array_filter($themes, "theme_valid");
|
||||
asort($themes);
|
||||
|
||||
print_select($pref_name, $value, $themes,
|
||||
'dojoType="dijit.form.Select"');
|
||||
|
||||
Reference in New Issue
Block a user