diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs b/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs index c31578f..48b43a6 100644 --- a/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs +++ b/OpenSim/Services/UserProfilesService/UserProfilesServiceBase.cs | |||
@@ -68,7 +68,7 @@ namespace OpenSim.Services.ProfilesService | |||
68 | if (string.IsNullOrEmpty(connString)) | 68 | if (string.IsNullOrEmpty(connString)) |
69 | connString = dbConfig.GetString("ConnectionString", String.Empty); | 69 | connString = dbConfig.GetString("ConnectionString", String.Empty); |
70 | } | 70 | } |
71 | 71 | ||
72 | IConfig ProfilesConfig = config.Configs[configName]; | 72 | IConfig ProfilesConfig = config.Configs[configName]; |
73 | if (ProfilesConfig != null) | 73 | if (ProfilesConfig != null) |
74 | { | 74 | { |
@@ -76,7 +76,7 @@ namespace OpenSim.Services.ProfilesService | |||
76 | connString = ProfilesConfig.GetString("ConnectionString", connString); | 76 | connString = ProfilesConfig.GetString("ConnectionString", connString); |
77 | realm = ProfilesConfig.GetString("Realm", realm); | 77 | realm = ProfilesConfig.GetString("Realm", realm); |
78 | } | 78 | } |
79 | 79 | ||
80 | ProfilesData = LoadPlugin<IProfilesData>(dllName, new Object[] { connString }); | 80 | ProfilesData = LoadPlugin<IProfilesData>(dllName, new Object[] { connString }); |
81 | if (ProfilesData == null) | 81 | if (ProfilesData == null) |
82 | throw new Exception("Could not find a storage interface in the given module"); | 82 | throw new Exception("Could not find a storage interface in the given module"); |