mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
- bugfix add missing $trusted_dir property to SmartyBC class (forum topic 25751)
This commit is contained in:
@@ -1,7 +1,10 @@
|
|||||||
===== 3.1.28-dev===== (xx.xx.2015)
|
===== 3.1.28-dev===== (xx.xx.2015)
|
||||||
|
31.10.2015
|
||||||
|
- bugfix add missing $trusted_dir property to SmartyBC class (forum topic 25751)
|
||||||
|
|
||||||
29.10.2015
|
29.10.2015
|
||||||
- improve template scope handling
|
- improve template scope handling
|
||||||
|
|
||||||
24.10.2015
|
24.10.2015
|
||||||
- more optimizations of template processing
|
- more optimizations of template processing
|
||||||
- bugfix Error when using {include} within {capture} https://github.com/smarty-php/smarty/issues/100
|
- bugfix Error when using {include} within {capture} https://github.com/smarty-php/smarty/issues/100
|
||||||
|
@@ -44,6 +44,13 @@ class SmartyBC extends Smarty
|
|||||||
*/
|
*/
|
||||||
public $_version = self::SMARTY_VERSION;
|
public $_version = self::SMARTY_VERSION;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is an array of directories where trusted php scripts reside.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $trusted_dir = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize new SmartyBC object
|
* Initialize new SmartyBC object
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user