1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/10933] Delete template_path from template class.

template_path is now only present in style resource locator.

PHPBB3-10933
This commit is contained in:
Oleg Pudeyev
2012-06-11 23:49:10 -04:00
parent 615d5ef628
commit 97e53103c3

View File

@@ -74,12 +74,6 @@ class phpbb_template
*/
private $locator;
/**
* Location of templates directory within style directories
* @var string
*/
public $template_path = 'template/';
/**
* Constructor.
*
@@ -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;
}