diff options
Diffstat (limited to 'OpenSim/Framework/UserConfig.cs')
-rw-r--r-- | OpenSim/Framework/UserConfig.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/UserConfig.cs b/OpenSim/Framework/UserConfig.cs index cc048b7..901b57a 100644 --- a/OpenSim/Framework/UserConfig.cs +++ b/OpenSim/Framework/UserConfig.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.IO; | ||
29 | 30 | ||
30 | namespace OpenSim.Framework | 31 | namespace OpenSim.Framework |
31 | { | 32 | { |
@@ -113,7 +114,7 @@ namespace OpenSim.Framework | |||
113 | configMember.addConfigurationOption("library_location", | 114 | configMember.addConfigurationOption("library_location", |
114 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | 115 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, |
115 | "Path to library control file", | 116 | "Path to library control file", |
116 | string.Format(".{0}inventory{0}Libraries.xml", System.IO.Path.DirectorySeparatorChar), false); | 117 | string.Format(".{0}inventory{0}Libraries.xml", Path.DirectorySeparatorChar), false); |
117 | 118 | ||
118 | configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | 119 | configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, |
119 | "DLL for database provider", "OpenSim.Data.MySQL.dll", false); | 120 | "DLL for database provider", "OpenSim.Data.MySQL.dll", false); |