diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 20:36:41 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 20:36:41 +0100 |
commit | 1689191f29ded2037d126d58d691752bb0afe697 (patch) | |
tree | 8d246aaf668eca619146f04f93e69ffc76b97c0a /phpBB | |
parent | 973c2a9a3aaad10ec589a9ef5e53862b1543f8f6 (diff) | |
parent | 9aa8f44489d5a94368e2e30bfa73c1278abfcce7 (diff) | |
download | forums-1689191f29ded2037d126d58d691752bb0afe697.tar forums-1689191f29ded2037d126d58d691752bb0afe697.tar.gz forums-1689191f29ded2037d126d58d691752bb0afe697.tar.bz2 forums-1689191f29ded2037d126d58d691752bb0afe697.tar.xz forums-1689191f29ded2037d126d58d691752bb0afe697.zip |
Merge pull request #3023 from Nicofuma/ticket/13133
[ticket/13133] Allow @vendor_name for includecss
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/template/twig/twig.php | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/phpBB/phpbb/template/twig/twig.php b/phpBB/phpbb/template/twig/twig.php index a3b002f350..5b71bb5e8a 100644 --- a/phpBB/phpbb/template/twig/twig.php +++ b/phpBB/phpbb/template/twig/twig.php @@ -189,13 +189,24 @@ class twig extends \phpbb\template\base { $path = $this->phpbb_root_path . trim($directory, '/') . "/{$name}/"; $template_path = $path . 'template/'; + $theme_path = $path . 'theme/'; + $is_valid_dir = false; if (is_dir($template_path)) { + $is_valid_dir = true; + $paths[] = $template_path; + } + if (is_dir($theme_path)) + { + $is_valid_dir = true; + $paths[] = $theme_path; + } + + if ($is_valid_dir) + { // Add the base style directory as a safe directory $this->twig->getLoader()->addSafeDirectory($path); - - $paths[] = $template_path; } } } @@ -253,25 +264,38 @@ class twig extends \phpbb\template\base { $ext_style_template_path = $ext_path . $template_dir['ext_path']; $ext_style_path = dirname($ext_style_template_path); + $ext_style_theme_path = $ext_style_path . 'theme/'; } else { $ext_style_path = $ext_path . 'styles/' . $template_dir['name'] . '/'; $ext_style_template_path = $ext_style_path . 'template/'; + $ext_style_theme_path = $ext_style_path . 'theme/'; } } else { $ext_style_path = $ext_path . 'styles/' . $template_dir . '/'; $ext_style_template_path = $ext_style_path . 'template/'; + $ext_style_theme_path = $ext_style_path . 'theme/'; } + $ok = false; if (is_dir($ext_style_template_path)) { + $ok = true; + $paths[] = $ext_style_template_path; + } + if (is_dir($ext_style_theme_path)) + { + $ok = true; + $paths[] = $ext_style_theme_path; + } + + if ($ok) + { // Add the base style directory as a safe directory $this->twig->getLoader()->addSafeDirectory($ext_style_path); - - $paths[] = $ext_style_template_path; } } |