Skip to content

Commit

Permalink
Item13513: Don't overlay existing config with extension install
Browse files Browse the repository at this point in the history
When the Package installer applies configuration changes, it should not
overlay existing configuration items, only new ones.
  • Loading branch information
gac410 committed Jul 16, 2015
1 parent 7e1f547 commit 36aca0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/lib/Foswiki/Configure/Package.pm
Expand Up @@ -547,6 +547,7 @@ HERE
. Foswiki::Configure::Reporter::uneval($val) );
}
else {
return 1 if ( eval("exists \$Foswiki::cfg$node->{keys}") );
eval("\$Foswiki::cfg$node->{keys}=\$val");
ASSERT( !$@, $@ ) if DEBUG;
$this->{reporter}->CHANGED( $node->{keys} );
Expand Down

0 comments on commit 36aca0d

Please sign in to comment.