From 13f1415c22a17500fe0425d88524bee1b9854df2 Mon Sep 17 00:00:00 2001 From: rodneyrehm Date: Fri, 7 Oct 2011 10:38:46 +0000 Subject: [PATCH] - bugfix testInstall() would not show path to internal plugins_dir (Forum Post 74627) --- change_log.txt | 5 ++++- libs/sysplugins/smarty_internal_utility.php | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/change_log.txt b/change_log.txt index fccd5e7b..11505baa 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,8 +1,11 @@ ===== trunk ===== +07.10.2011 +- improvement removed html comments from {mailto} (Forum Topic 20092) +- bugfix testInstall() would not show path to internal plugins_dir (Forum Post 74627) + 06.10.2011 - bugfix switch lexer internals depending on mbstring.func_overload - bugfix start_year and end_year of {html_select_date} did not use current year as offset base (Issue #53) -- improvement removed html comments from {mailto} (Forum Topic 20092) 05.10.2011 - bugfix of problem introduced with r4342 by replacing strlen() with isset() diff --git a/libs/sysplugins/smarty_internal_utility.php b/libs/sysplugins/smarty_internal_utility.php index 1d3ced38..681efc30 100644 --- a/libs/sysplugins/smarty_internal_utility.php +++ b/libs/sysplugins/smarty_internal_utility.php @@ -377,6 +377,9 @@ class Smarty_Internal_Utility { } } elseif ($_core_plugins_dir && $_core_plugins_dir == realpath($plugin_dir)) { $_core_plugins_available = true; + if ($errors === null) { + echo "$plugin_dir is OK.\n"; + } } else { if ($errors === null) { echo "$plugin_dir is OK.\n";