Adjusting Template class so that _global is ignored as a theme

This commit is contained in:
Jay Sitter 2014-11-17 17:11:33 -05:00
parent d91ff81ca6
commit ca6c0de380
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
@ -232,4 +232,4 @@ class Template extends Twig_Environment
Tools::emptyCache();
Tools::redirect('?view=config');
}
}
}