From eab8a101e7a3fcbb41e01a574985e06c5a3775de Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 18 Oct 2018 02:40:38 +0200 Subject: Updating Smarty --- .../smarty_internal_method_registerdefaultpluginhandler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/smarty3/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php') diff --git a/lib/smarty3/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php b/lib/smarty3/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php index 80b801c..a9fb78d 100644 --- a/lib/smarty3/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php +++ b/lib/smarty3/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php @@ -25,14 +25,14 @@ class Smarty_Internal_Method_RegisterDefaultPluginHandler * @link http://www.smarty.net/docs/en/api.register.default.plugin.handler.tpl * * @param \Smarty_Internal_TemplateBase|\Smarty_Internal_Template|\Smarty $obj - * @param callable $callback class/method name + * @param callable $callback class/method name * * @return \Smarty|\Smarty_Internal_Template * @throws SmartyException if $callback is not callable */ public function registerDefaultPluginHandler(Smarty_Internal_TemplateBase $obj, $callback) { - $smarty = isset($obj->smarty) ? $obj->smarty : $obj; + $smarty = $obj->_getSmartyObj(); if (is_callable($callback)) { $smarty->default_plugin_handler_func = $callback; } else { @@ -40,4 +40,4 @@ class Smarty_Internal_Method_RegisterDefaultPluginHandler } return $obj; } -} \ No newline at end of file +} -- cgit v1.2.3