diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-02-17 04:26:38 -0800 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-02-17 04:26:38 -0800 |
commit | a24ba9dc2db66309851476a7436db483089f8988 (patch) | |
tree | 5c54082d276535976825926b4f93cdf2d8d280cd /phpBB | |
parent | 6471cce6de11731898e9b9871ee8558856529e1d (diff) | |
parent | 5aad71b22017dea39a4a549d4e3b1b939789c1ce (diff) | |
download | forums-a24ba9dc2db66309851476a7436db483089f8988.tar forums-a24ba9dc2db66309851476a7436db483089f8988.tar.gz forums-a24ba9dc2db66309851476a7436db483089f8988.tar.bz2 forums-a24ba9dc2db66309851476a7436db483089f8988.tar.xz forums-a24ba9dc2db66309851476a7436db483089f8988.zip |
Merge pull request #576 from cyberalien/ticket/10652
[ticket/10652] Fixing typo in template class
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/template/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php index 43dec7dbf5..9297b759ac 100644 --- a/phpBB/includes/template/template.php +++ b/phpBB/includes/template/template.php @@ -128,7 +128,7 @@ class phpbb_template { $templates = array($template_name => $template_path); - if ($fallback_template_path !== false) + if ($fallback_template_name !== false) { $templates[$fallback_template_name] = $fallback_template_path; } |