- fixed internal_config (removed unwanted code line)

This commit is contained in:
uwe.tews@googlemail.com
2010-11-13 05:06:58 +00:00
parent fe63ad36b8
commit 1f0c08ce3f
2 changed files with 1 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
- bugfix on {debug}
- reverted location of loadPlugin() to Smarty class
- fixed comments in plugins
- fixed internal_config (removed unwanted code line)
===== Smarty 3.0.2 =====

View File

@@ -266,7 +266,6 @@ class Smarty_Internal_Config {
// copy global config vars
foreach ($_config_vars['vars'] as $variable => $value) {
if ($this->smarty->config_overwrite || !isset($scope_ptr->config_vars[$variable])) {
$scope->config_vars[$variable] = $value;
$scope_ptr->config_vars[$variable] = $value;
} else {
$scope_ptr->config_vars[$variable] = array_merge((array)$scope_ptr->config_vars[$variable], (array)$value);