From 8c48521260888143382e342c62926b37fe96b8f4 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Thu, 27 Aug 2009 16:02:44 +0000 Subject: [PATCH] - fixed wrong case at require_once --- libs/Smarty.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 7db4e1fb..a0f39a15 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -213,8 +213,8 @@ class Smarty extends Smarty_Internal_TemplateBase { $this->debug_tpl = SMARTY_DIR . 'debug.tpl'; // load basic plugins require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'sysplugins' . DIRECTORY_SEPARATOR . 'internal.template.php'); -require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'sysplugins' . DIRECTORY_SEPARATOR . 'internal.Plugin_Handler.php'); -require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'sysplugins' . DIRECTORY_SEPARATOR . 'internal.Run_Filter.php'); +require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'sysplugins' . DIRECTORY_SEPARATOR . 'internal.plugin_handler.php'); +require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'sysplugins' . DIRECTORY_SEPARATOR . 'internal.run_filter.php'); // $this->loadPlugin($this->template_class); // $this->loadPlugin('Smarty_Internal_Plugin_Handler'); // $this->loadPlugin('Smarty_Internal_Run_Filter');