Skip to content

Commit

Permalink
Merge branch 'rel-10_1' into rel-11_0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven committed Sep 30, 2024
2 parents fa688f1 + ad7a171 commit a381e59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Kernel/System/SysConfig.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5901,6 +5901,11 @@ sub _GetSettingsToDeploy {
KEY:
for my $Key ( sort keys %SettingsLookup ) {
next KEY if !$ModifiedSettingsLookup{$Key};
# In case of "NotDirty" the modified settings are received as the last modified versions
# which contain also settings which were "reset to default", even if the default changed
# in the meantime. Thus their effective value might be outdated, and we will not overwrite
# the default effective value
next KEY if $ModifiedSettingsLookup{$Key}{ResetToDefault};

# In case of "NotDirty" the modified settings are received as the last modified versions
# which contain also settings which were "reset to default", even if the default changed
Expand Down

0 comments on commit a381e59

Please sign in to comment.