From caceefc300b77f6bb0e46af9dbfcb51b73fb17c8 Mon Sep 17 00:00:00 2001 From: uwetews Date: Fri, 30 Sep 2016 04:10:25 +0200 Subject: [PATCH] use absolute path normalizaion --- libs/sysplugins/smarty_internal_runtime_getincludepath.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/sysplugins/smarty_internal_runtime_getincludepath.php b/libs/sysplugins/smarty_internal_runtime_getincludepath.php index 4c1f7548..e12b0c57 100644 --- a/libs/sysplugins/smarty_internal_runtime_getincludepath.php +++ b/libs/sysplugins/smarty_internal_runtime_getincludepath.php @@ -87,7 +87,7 @@ class Smarty_Internal_Runtime_GetIncludePath $_dirs = (array) explode(PATH_SEPARATOR, $_i_path); foreach ($_dirs as $_path) { if (is_dir($_path)) { - $this->_include_dirs[] = $smarty->_realpath($_path . $smarty->ds); + $this->_include_dirs[] = $smarty->_realpath($_path . $smarty->ds, true); } } return true;