aboutsummaryrefslogtreecommitdiffstats
path: root/library/Smarty/libs/sysplugins/smarty_variable.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Smarty/libs/sysplugins/smarty_variable.php')
-rw-r--r--library/Smarty/libs/sysplugins/smarty_variable.php10
1 files changed, 1 insertions, 9 deletions
diff --git a/library/Smarty/libs/sysplugins/smarty_variable.php b/library/Smarty/libs/sysplugins/smarty_variable.php
index c1de93cb5..a6504b18f 100644
--- a/library/Smarty/libs/sysplugins/smarty_variable.php
+++ b/library/Smarty/libs/sysplugins/smarty_variable.php
@@ -21,25 +21,17 @@ class Smarty_Variable
* @var boolean
*/
public $nocache = false;
- /**
- * the scope the variable will have (local,parent or root)
- *
- * @var int
- */
- public $scope = Smarty::SCOPE_LOCAL;
/**
* create Smarty variable object
*
* @param mixed $value the value to assign
* @param boolean $nocache if true any output of this variable will be not cached
- * @param int $scope the scope the variable will have (local,parent or root)
*/
- public function __construct($value = null, $nocache = false, $scope = Smarty::SCOPE_LOCAL)
+ public function __construct($value = null, $nocache = false)
{
$this->value = $value;
$this->nocache = $nocache;
- $this->scope = $scope;
}
/**