aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/libs/sysplugins/smarty_resource.php')
-rw-r--r--vendor/smarty/smarty/libs/sysplugins/smarty_resource.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php b/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php
index aae7e42f7..7fe84536f 100644
--- a/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php
+++ b/vendor/smarty/smarty/libs/sysplugins/smarty_resource.php
@@ -72,9 +72,7 @@ abstract class Smarty_Resource
}
// try registered resource
if (isset($smarty->registered_resources[ $type ])) {
- return $smarty->_cache[ 'resource_handlers' ][ $type ] =
- $smarty->registered_resources[ $type ] instanceof Smarty_Resource ?
- $smarty->registered_resources[ $type ] : new Smarty_Internal_Resource_Registered();
+ return $smarty->_cache[ 'resource_handlers' ][ $type ] = $smarty->registered_resources[ $type ];
}
// try sysplugins dir
if (isset(self::$sysplugins[ $type ])) {