mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/twig] Remove reference to cachepath, it is not used publicly anymore
PHPBB3-11598
This commit is contained in:
parent
f39edcea3f
commit
985a233a78
2 changed files with 4 additions and 3 deletions
|
@ -160,8 +160,6 @@ class phpbb_style
|
||||||
$this->template->set_style_names($names, $appended_paths);
|
$this->template->set_style_names($names, $appended_paths);
|
||||||
}
|
}
|
||||||
|
|
||||||
//$this->template->cachepath = $this->phpbb_root_path . 'cache/tpl_' . str_replace('_', '-', $name) . '_';
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,9 +30,12 @@ class phpbb_template_twig implements phpbb_template
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path of the cache directory for the template
|
* Path of the cache directory for the template
|
||||||
|
*
|
||||||
|
* Cannot be changed during runtime.
|
||||||
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $cachepath = '';
|
private $cachepath = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* phpBB root path
|
* phpBB root path
|
||||||
|
|
Loading…
Add table
Reference in a new issue