mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 02:44:27 +02:00
- bugfix declare all directory properties private to map direct access to getter/setter also on extended Smarty class
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
===== trunk =====
|
===== 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
|
16.11.2011
|
||||||
- bugfix Smarty_Resource::load() did not always return a proper resource handler (Forum Topic 20414)
|
- 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)
|
- added escape argument to html_checkboxes and html_radios (Forum Topic 20425)
|
||||||
|
@@ -190,7 +190,7 @@ class Smarty extends Smarty_Internal_TemplateBase {
|
|||||||
* template directory
|
* template directory
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $template_dir = array();
|
private $template_dir = array();
|
||||||
/**
|
/**
|
||||||
* joined template directory string used in cache keys
|
* joined template directory string used in cache keys
|
||||||
* @var string
|
* @var string
|
||||||
@@ -220,22 +220,22 @@ class Smarty extends Smarty_Internal_TemplateBase {
|
|||||||
* compile directory
|
* compile directory
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $compile_dir = null;
|
private $compile_dir = null;
|
||||||
/**
|
/**
|
||||||
* plugins directory
|
* plugins directory
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $plugins_dir = array();
|
private $plugins_dir = array();
|
||||||
/**
|
/**
|
||||||
* cache directory
|
* cache directory
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $cache_dir = null;
|
private $cache_dir = null;
|
||||||
/**
|
/**
|
||||||
* config directory
|
* config directory
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $config_dir = array();
|
private $config_dir = array();
|
||||||
/**
|
/**
|
||||||
* force template compiling?
|
* force template compiling?
|
||||||
* @var boolean
|
* @var boolean
|
||||||
|
Reference in New Issue
Block a user