aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-02-15 18:46:27 +0200
committerVjacheslav Trushkin <arty@phpbb.com>2012-02-15 18:46:27 +0200
commit5aad71b22017dea39a4a549d4e3b1b939789c1ce (patch)
tree5ef4be4b572b98c467523a30557299eda1a4095f
parentdd495e7a147670bd3112d80650bbcb16fc68a690 (diff)
downloadforums-5aad71b22017dea39a4a549d4e3b1b939789c1ce.tar
forums-5aad71b22017dea39a4a549d4e3b1b939789c1ce.tar.gz
forums-5aad71b22017dea39a4a549d4e3b1b939789c1ce.tar.bz2
forums-5aad71b22017dea39a4a549d4e3b1b939789c1ce.tar.xz
forums-5aad71b22017dea39a4a549d4e3b1b939789c1ce.zip
[ticket/10652] Fixing typo in template class
Fixing typo in template class that prevents template inheritance from working PHPBB3-10652
-rw-r--r--phpBB/includes/template/template.php2
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;
}