summaryrefslogtreecommitdiff
path: root/lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php')
-rw-r--r--lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php b/lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php
index 1168057..b999038 100644
--- a/lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php
+++ b/lib/smarty3/sysplugins/smarty_internal_method_unregistercacheresource.php
@@ -21,8 +21,8 @@ class Smarty_Internal_Method_UnregisterCacheResource
/**
* Registers a resource to fetch a template
*
- * @api Smarty::unregisterCacheResource()
- * @link http://www.smarty.net/docs/en/api.unregister.cacheresource.tpl
+ * @api Smarty::unregisterCacheResource()
+ * @link http://www.smarty.net/docs/en/api.unregister.cacheresource.tpl
*
* @param \Smarty_Internal_TemplateBase|\Smarty_Internal_Template|\Smarty $obj
* @param $name
@@ -31,10 +31,10 @@ class Smarty_Internal_Method_UnregisterCacheResource
*/
public function unregisterCacheResource(Smarty_Internal_TemplateBase $obj, $name)
{
- $smarty = isset($obj->smarty) ? $obj->smarty : $obj;
+ $smarty = $obj->_getSmartyObj();
if (isset($smarty->registered_cache_resources[ $name ])) {
unset($smarty->registered_cache_resources[ $name ]);
}
return $obj;
}
-} \ No newline at end of file
+}