aboutsummaryrefslogtreecommitdiffstats
path: root/library/Smarty/libs/sysplugins/smarty_internal_data.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-04-23 21:24:22 +0200
committerMario Vavti <mario@mariovavti.com>2016-04-23 21:24:22 +0200
commit7e30c1dd823686eb8e59e6e1c171a751e8af2d49 (patch)
tree9a0dee0a26572e21f5576bcddbc2c4d4b905aa23 /library/Smarty/libs/sysplugins/smarty_internal_data.php
parent78bf4564f20df20ec8d9025c974e25546e95bf69 (diff)
downloadvolse-hubzilla-7e30c1dd823686eb8e59e6e1c171a751e8af2d49.tar.gz
volse-hubzilla-7e30c1dd823686eb8e59e6e1c171a751e8af2d49.tar.bz2
volse-hubzilla-7e30c1dd823686eb8e59e6e1c171a751e8af2d49.zip
update smarty to version 3.1.29
Diffstat (limited to 'library/Smarty/libs/sysplugins/smarty_internal_data.php')
-rw-r--r--library/Smarty/libs/sysplugins/smarty_internal_data.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/library/Smarty/libs/sysplugins/smarty_internal_data.php b/library/Smarty/libs/sysplugins/smarty_internal_data.php
index 53f351b41..bba95d303 100644
--- a/library/Smarty/libs/sysplugins/smarty_internal_data.php
+++ b/library/Smarty/libs/sysplugins/smarty_internal_data.php
@@ -188,6 +188,21 @@ class Smarty_Internal_Data
}
/**
+ * gets the object of a Smarty variable
+ *
+ * @param string $variable the name of the Smarty variable
+ * @param Smarty_Internal_Data $_ptr optional pointer to data object
+ * @param boolean $searchParents search also in parent data
+ * @param bool $error_enable
+ *
+ * @return Smarty_Variable|Smarty_Undefined_Variable the object of the variable
+ * @deprecated since 3.1.28 please use Smarty_Internal_Data::getTemplateVars() instead.
+ */
+ public function getVariable($variable = null, Smarty_Internal_Data $_ptr = null, $searchParents = true, $error_enable = true){
+ return $this->ext->getTemplateVars->_getVariable($this, $variable, $_ptr, $searchParents, $error_enable);
+ }
+
+ /**
* Follow the parent chain an merge template and config variables
*
* @param \Smarty_Internal_Data|null $data