summaryrefslogtreecommitdiff
path: root/lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php')
-rw-r--r--lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php b/lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php
index 3fd8b14..f39e316 100644
--- a/lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php
+++ b/lib/smarty3/sysplugins/smarty_internal_method_unregisterplugin.php
@@ -25,17 +25,17 @@ class Smarty_Internal_Method_UnregisterPlugin
* @link http://www.smarty.net/docs/en/api.unregister.plugin.tpl
*
* @param \Smarty_Internal_TemplateBase|\Smarty_Internal_Template|\Smarty $obj
- * @param string $type plugin type
- * @param string $name name of template tag
+ * @param string $type plugin type
+ * @param string $name name of template tag
*
* @return \Smarty|\Smarty_Internal_Template
*/
public function unregisterPlugin(Smarty_Internal_TemplateBase $obj, $type, $name)
{
- $smarty = isset($obj->smarty) ? $obj->smarty : $obj;
+ $smarty = $obj->_getSmartyObj();
if (isset($smarty->registered_plugins[ $type ][ $name ])) {
unset($smarty->registered_plugins[ $type ][ $name ]);
}
return $obj;
}
-} \ No newline at end of file
+}