- added missing _plugins property in smarty.class.php

This commit is contained in:
Uwe.Tews
2010-02-14 16:42:39 +00:00
parent 78c2e92f19
commit 9afda44ebf
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
14/02/2010
- added missing _plugins property in smarty.class.php
12/02/2010
- bugfix on nested {block} tags
- changed Smarty special variable $smarty.parent to $smarty.block.parent

View File

@@ -224,6 +224,8 @@ class Smarty extends Smarty_Internal_Data {
public $block_data = array();
// block tag hierarchy
public $_tag_stack = array();
// plugins
public $_plugins = array();
// generate deprecated function call notices?
public $deprecation_notices = true;
@@ -731,4 +733,4 @@ function smartyAutoload($class) {
}
}
?>
?>