diff --git a/library/smarty/libs/sysplugins/smarty_variable.php b/library/smarty/libs/sysplugins/smarty_variable.php new file mode 100644 --- /dev/null +++ b/library/smarty/libs/sysplugins/smarty_variable.php @@ -0,0 +1,52 @@ +value = $value; + $this->nocache = $nocache; + $this->scope = $scope; + } + + /** + * <> String conversion + * + * @return string + */ + public function __toString() { + return (string)$this->value; + } +} +