- bugfix declare all directory properties private to map direct access to getter/setter also on extended Smarty class

This commit is contained in:
uwe.tews@googlemail.com
2011-11-18 15:32:17 +00:00
parent 3d03494a74
commit 8f732cc4b6
2 changed files with 15 additions and 12 deletions

View File

@@ -1,4 +1,7 @@
===== trunk =====
18.11.2011
- bugfix declare all directory properties private to map direct access to getter/setter also on extended Smarty class
16.11.2011
- bugfix Smarty_Resource::load() did not always return a proper resource handler (Forum Topic 20414)
- added escape argument to html_checkboxes and html_radios (Forum Topic 20425)

View File

@@ -190,7 +190,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
* template directory
* @var array
*/
protected $template_dir = array();
private $template_dir = array();
/**
* joined template directory string used in cache keys
* @var string
@@ -220,22 +220,22 @@ class Smarty extends Smarty_Internal_TemplateBase {
* compile directory
* @var string
*/
protected $compile_dir = null;
private $compile_dir = null;
/**
* plugins directory
* @var array
*/
protected $plugins_dir = array();
private $plugins_dir = array();
/**
* cache directory
* @var string
*/
protected $cache_dir = null;
private $cache_dir = null;
/**
* config directory
* @var array
*/
protected $config_dir = array();
private $config_dir = array();
/**
* force template compiling?
* @var boolean