summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--change_log.txt5
-rw-r--r--libs/sysplugins/smarty_internal_utility.php3
2 files changed, 7 insertions, 1 deletions
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";