mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
fix properties
This commit is contained in:
@@ -30,7 +30,7 @@ abstract class Smarty_Internal_TemplateCompilerBase
|
||||
*
|
||||
* @var object
|
||||
*/
|
||||
public $parser;
|
||||
public $parser = null;
|
||||
|
||||
/**
|
||||
* hash for nocache sections
|
||||
@@ -305,8 +305,20 @@ abstract class Smarty_Internal_TemplateCompilerBase
|
||||
*/
|
||||
public $_capture_stack = array();
|
||||
|
||||
/**
|
||||
* Saved source resource
|
||||
*
|
||||
* @var \Smarty_Template_Source
|
||||
*/
|
||||
private $savedSource = null;
|
||||
|
||||
/**
|
||||
* Stack for {setfilter} {/setfilter}
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $variable_filter_stack = array();
|
||||
|
||||
/**
|
||||
* Strip preg pattern
|
||||
*
|
||||
|
Reference in New Issue
Block a user