From 35d7d5126d250d0cb3960b669b7505730ee684a3 Mon Sep 17 00:00:00 2001 From: messju Date: Fri, 2 Jan 2004 11:05:41 +0000 Subject: [PATCH] removed unnecessary param in call to _fetch_resource_info() --- libs/Smarty.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 7b7e6d53..688ee49f 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -1407,7 +1407,7 @@ class Smarty } else { // get file source and timestamp $_params = array('resource_name' => $resource_name, 'get_source'=>false); - if (!$this->_fetch_resource_info($_params, $this)) { + if (!$this->_fetch_resource_info($_params)) { return false; } if ($_params['resource_timestamp'] <= filemtime($compile_path)) {