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