- bugfix add missing $trusted_dir property to SmartyBC class (forum topic 25751)

This commit is contained in:
uwetews
2015-10-31 23:13:12 +01:00
parent eedfdff62f
commit 9496df8e1f
2 changed files with 11 additions and 1 deletions

View File

@@ -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

View File

@@ -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
* *