- bugfix testInstall() would not show path to internal plugins_dir (Forum Post 74627)

This commit is contained in:
rodneyrehm
2011-10-07 10:38:46 +00:00
parent a3a4bf8f80
commit 13f1415c22
2 changed files with 7 additions and 1 deletions

View File

@@ -1,8 +1,11 @@
===== trunk ===== ===== 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 06.10.2011
- bugfix switch lexer internals depending on mbstring.func_overload - 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) - 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 05.10.2011
- bugfix of problem introduced with r4342 by replacing strlen() with isset() - bugfix of problem introduced with r4342 by replacing strlen() with isset()

View File

@@ -377,6 +377,9 @@ class Smarty_Internal_Utility {
} }
} elseif ($_core_plugins_dir && $_core_plugins_dir == realpath($plugin_dir)) { } elseif ($_core_plugins_dir && $_core_plugins_dir == realpath($plugin_dir)) {
$_core_plugins_available = true; $_core_plugins_available = true;
if ($errors === null) {
echo "$plugin_dir is OK.\n";
}
} else { } else {
if ($errors === null) { if ($errors === null) {
echo "$plugin_dir is OK.\n"; echo "$plugin_dir is OK.\n";