aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-06-11 23:49:10 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-11-02 19:37:52 -0400
commit97e53103c3bb873389ea3046a3cd451ab5542ae1 (patch)
tree2aa23240976d1dff38b009cf8118d771c8b06480 /phpBB
parent615d5ef628767ec127735fb4797171de3f886de2 (diff)
downloadforums-97e53103c3bb873389ea3046a3cd451ab5542ae1.tar
forums-97e53103c3bb873389ea3046a3cd451ab5542ae1.tar.gz
forums-97e53103c3bb873389ea3046a3cd451ab5542ae1.tar.bz2
forums-97e53103c3bb873389ea3046a3cd451ab5542ae1.tar.xz
forums-97e53103c3bb873389ea3046a3cd451ab5542ae1.zip
[ticket/10933] Delete template_path from template class.
template_path is now only present in style resource locator. PHPBB3-10933
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/template/template.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php
index 9e44c5609b..6a4db1cf41 100644
--- a/phpBB/includes/template/template.php
+++ b/phpBB/includes/template/template.php
@@ -75,12 +75,6 @@ class phpbb_template
private $locator;
/**
- * Location of templates directory within style directories
- * @var string
- */
- public $template_path = 'template/';
-
- /**
* Constructor.
*
* @param string $phpbb_root_path phpBB root path
@@ -95,7 +89,6 @@ class phpbb_template
$this->config = $config;
$this->user = $user;
$this->locator = $locator;
- $this->template_path = $this->locator->template_path;
$this->context = $context;
}