From 9afda44ebf91624d19166e1f23effb289c0554c9 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Sun, 14 Feb 2010 16:42:39 +0000 Subject: [PATCH] - added missing _plugins property in smarty.class.php --- change_log.txt | 3 +++ libs/Smarty.class.php | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/change_log.txt b/change_log.txt index 2ab4c918..12832ec0 100644 --- a/change_log.txt +++ b/change_log.txt @@ -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 diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 6cf256b1..020ef762 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -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) { } } -?> +?> \ No newline at end of file