mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fixed initialization bug in ShellSettings.
This commit is contained in:
parent
0d8a0bfb10
commit
c163d87902
@ -21,7 +21,7 @@ namespace Orchard.Environment.Configuration {
|
||||
}
|
||||
|
||||
public ShellSettings(ShellSettings settings) {
|
||||
_values = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||
_values = new Dictionary<string, string>(settings._values, StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
Name = settings.Name;
|
||||
DataProvider = settings.DataProvider;
|
||||
|
Loading…
Reference in New Issue
Block a user