mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-12 16:58:37 +00:00
Adjusting Template class so that _global is ignored as a theme
This commit is contained in:
parent
d91ff81ca6
commit
ca6c0de380
1 changed files with 2 additions and 2 deletions
|
@ -181,7 +181,7 @@ class Template extends Twig_Environment
|
|||
while (($theme = readdir($handle)) !== false) {
|
||||
# Themes are stored in a directory, so all directory names are themes
|
||||
# @todo move theme installation data to database
|
||||
if (!is_dir(THEME . '/' . $theme) || in_array($theme, array('.', '..'))) {
|
||||
if (!is_dir(THEME . '/' . $theme) || in_array($theme, array('.', '..', '_global'))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue