aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-06-11 23:50:33 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-11-02 19:37:53 -0400
commit6295b014d35890d60ccf422f5bb8228569e8ca3a (patch)
tree31c3432f50f70ab0e120219e7b5de8e3e22274a0
parent97e53103c3bb873389ea3046a3cd451ab5542ae1 (diff)
downloadforums-6295b014d35890d60ccf422f5bb8228569e8ca3a.tar
forums-6295b014d35890d60ccf422f5bb8228569e8ca3a.tar.gz
forums-6295b014d35890d60ccf422f5bb8228569e8ca3a.tar.bz2
forums-6295b014d35890d60ccf422f5bb8228569e8ca3a.tar.xz
forums-6295b014d35890d60ccf422f5bb8228569e8ca3a.zip
[ticket/10933] Delete template_path assignment.
template_path is now only present in style resource locator and should not be assigned to. PHPBB3-10933
-rw-r--r--phpBB/includes/style/style.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/style/style.php b/phpBB/includes/style/style.php
index 36298b49ec..d8974bc516 100644
--- a/phpBB/includes/style/style.php
+++ b/phpBB/includes/style/style.php
@@ -126,7 +126,7 @@ class phpbb_style
if ($template_path !== false)
{
- $this->template->template_path = $this->locator->template_path = $template_path;
+ $this->locator->template_path = $template_path;
}
return true;